mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-06-28 17:56:37 +02:00
Get rid of stricmp/strnicmp (use strcasecmp/strncasecmp)
This commit is contained in:
+1
-1
@@ -25,7 +25,7 @@ int CommandExists(char *name)
|
||||
|
||||
for (p = CommandHash[toupper(*name)]; p; p = p->next)
|
||||
{
|
||||
if (!stricmp(p->cmd, name))
|
||||
if (!strcasecmp(p->cmd, name))
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user