bad HAVE_STRICMP usage found by Bjrn Stenberg

This commit is contained in:
Daniel Stenberg 2000-06-14 14:26:20 +00:00
parent a374925bb7
commit ec520ceefd

View File

@ -47,7 +47,7 @@ int strequal(const char *first, const char *second)
#elif defined(HAVE_STRCMPI)
return !strcmpi(first, second);
#elif defined(HAVE_STRICMP)
return !strcmpi(first, second);
return !stricmp(first, second);
#else
while (*first && *second) {
if (toupper(*first) != toupper(*second)) {