Commit ec520cee authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

bad HAVE_STRICMP usage found by Bjrn Stenberg

parent a374925b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)) {