mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-03 13:23:13 +02:00
Make auth_findtype case insensitive
This commit is contained in:
+1
-1
@@ -70,7 +70,7 @@ int Auth_FindType(char *type)
|
||||
|
||||
while (p->data)
|
||||
{
|
||||
if (!strcmp(p->data, type))
|
||||
if (!mycmp(p->data, type))
|
||||
return p->type;
|
||||
p++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user