X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fcommon%2Fsvrblist.cpp;h=802b89c5f63a0eda7280e988f1251edfbbcedd63;hb=e09672385792a1594700f03e06d1293e352dcd83;hp=9894b21e9ce5f41b7f4588c7ba3e6358a2db7689;hpb=205309ee9fa5c24c4502e4a1c9669ac1b803ae80;p=xestiacalendar%2F.git diff --git a/source/common/svrblist.cpp b/source/common/svrblist.cpp index 9894b21..802b89c 100644 --- a/source/common/svrblist.cpp +++ b/source/common/svrblist.cpp @@ -1,37 +1,37 @@ // svrblist.cpp - Server Blacklist subroutines. // -// (c) 2012-2015 Xestia Software Development. +// (c) 2012-2017 Xestia Software Development. // -// This file is part of Xestia Address Book. +// This file is part of Xestia Calendar. Based on Xestia Address Book. // -// Xestia Address Book is free software: you can redistribute it and/or modify +// Xestia Calendar is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by the // Free Software Foundation, version 3 of the license. // -// Xestia Address Book is distributed in the hope that it will be useful, +// Xestia Calendar is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License along -// with Xestia Address Book. If not, see +// with Xestia Calendar. If not, see #include #include -bool CheckBlacklist(wxString ServerAddress){ +bool CheckBlacklist(wxString serverAddress){ // Check if the server address is on the blacklist. - wxString ServerBlacklist = "google.com"; - wxString BListHostname; + wxString serverBlacklist = "google.com"; + wxString bListHostname; - wxStringTokenizer ServerBlacklistTkz(ServerBlacklist, wxT("|")); + wxStringTokenizer serverBlacklistTkz(serverBlacklist, wxT("|")); - while(ServerBlacklistTkz.HasMoreTokens()){ + while(serverBlacklistTkz.HasMoreTokens()){ - BListHostname = ServerBlacklistTkz.GetNextToken(); - if (BListHostname == ServerAddress){ + bListHostname = serverBlacklistTkz.GetNextToken(); + if (bListHostname == serverAddress){ return TRUE; }