diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/strequal.c | 2 |
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)) { |