mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-01-18 14:31:52 +00:00
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:
parent
601d04ee4d
commit
8499c5a6db
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue