Use strcasecmp() not stricmp()

git-svn-id: https://warzone2100.svn.sourceforge.net/svnroot/warzone2100/trunk@7311 4a71c877-e1ca-e34f-864e-861f7616d084
master
Buginator 2009-05-03 20:32:58 +00:00 committed by Git SVN Gateway
parent bb848f5582
commit 331b98f46e
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ BOOL loadConfig(void)
if (getWarzoneKeyString("masterserver_name", sBuf))
{
NETsetMasterserverName(sBuf);
if (stricmp(sBuf, "lobby.wz2100.net") != 0)
if (strcasecmp(sBuf, "lobby.wz2100.net") != 0)
{
debug(LOG_ERROR, "We are not using lobby.wz2100.net, for the master server name, we are using %s instead?", sBuf);
}