this should really be strncmp
git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@94 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
parent
527b7ace92
commit
ecc8f9b897
|
@ -1164,7 +1164,7 @@ writefile (int requirenew)
|
|||
|
||||
for (i = 0; i < f_num; i++)
|
||||
{
|
||||
if (loggedin && !strncasecmp (me->username, users[i]->username, 20))
|
||||
if (loggedin && !strncmp (me->username, users[i]->username, 20))
|
||||
{
|
||||
if (requirenew)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue