mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-09 13:23:12 +02:00
Get rid of stricmp/strnicmp (use strcasecmp/strncasecmp)
This commit is contained in:
@@ -82,7 +82,7 @@ int extban_account_is_banned(aClient *sptr, aChannel *chptr, char *banin, int ty
|
||||
{
|
||||
char *ban = banin+3;
|
||||
|
||||
if (!stricmp(ban, sptr->user->svid))
|
||||
if (!strcasecmp(ban, sptr->user->svid))
|
||||
return 1;
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user