From ec520ceefd73391926dac1661c440c9a3138adc1 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 14 Jun 2000 14:26:20 +0000 Subject: =?UTF-8?q?bad=20HAVE=5FSTRICMP=20usage=20found=20by=20Bj=F6rn=20S?= =?UTF-8?q?tenberg?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/strequal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/strequal.c') 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)) { -- cgit v1.2.3