mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-07 09:03:13 +02:00
Get rid of stricmp/strnicmp (use strcasecmp/strncasecmp)
This commit is contained in:
+1
-1
@@ -74,7 +74,7 @@ ConfigItem_help *Find_Help(char *command)
|
||||
{
|
||||
if (help->command == NULL)
|
||||
continue;
|
||||
else if (!stricmp(command,help->command))
|
||||
else if (!strcasecmp(command,help->command))
|
||||
return help;
|
||||
}
|
||||
return NULL;
|
||||
|
||||
Reference in New Issue
Block a user