aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/strequal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strequal.c b/lib/strequal.c
index e40e06e97..87dbc5d86 100644
--- a/lib/strequal.c
+++ b/lib/strequal.c
@@ -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)) {