1
0
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:
dboyz
2015-05-20 00:42:32 +08:00
parent 7ad4b6db67
commit 09c71fc5f9
+1 -1
View File
@@ -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++;
}