Make these case insensitive.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1849 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2006-01-12 22:19:47 +00:00
parent 601d04ee4d
commit 8499c5a6db
1 changed files with 2 additions and 2 deletions

View File

@ -961,8 +961,8 @@ void CL_ParseChunkedDownload(void)
if (cls.downloadmethod == DL_QWCHUNKS)
Host_EndGame("Received second download - \"%s\"\n", svname);
if (strcmp(cls.downloadname, svname))
if (strcmp(svname, "csprogs.dat") || strncmp(cls.downloadname, "csprogsvers/", 12))
if (stricmp(cls.downloadname, svname))
if (stricmp(svname, "csprogs.dat") || strnicmp(cls.downloadname, "csprogsvers/", 12))
Host_EndGame("Server sent the wrong download - \"%s\" instead of \"%s\"\n", svname, cls.downloadname);