diff --git a/src/auth.c b/src/auth.c index 75e29ccd7..cc48f5107 100644 --- a/src/auth.c +++ b/src/auth.c @@ -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++; }