From ee34c25c8a989b5a7c0ad59d71bb39f8efff045c Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 19 Jul 2011 13:19:29 -0700 Subject: First part of fix for bug 8310 - toupper_ascii() is broken on big-endian systems Remove int toupper_ascii(int c); int tolower_ascii(int c); int isupper_ascii(int c); int islower_ascii(int c); and replace with their _m equivalents, as they are identical. --- lib/util/util_str_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/util/util_str_common.c') diff --git a/lib/util/util_str_common.c b/lib/util/util_str_common.c index fe78d65020..20682f9935 100644 --- a/lib/util/util_str_common.c +++ b/lib/util/util_str_common.c @@ -43,7 +43,7 @@ _PUBLIC_ int strwicmp(const char *psz1, const char *psz2) psz1++; while (isspace((int)*psz2)) psz2++; - if (toupper_ascii((unsigned char)*psz1) != toupper_ascii((unsigned char)*psz2) + if (toupper_m((unsigned char)*psz1) != toupper_m((unsigned char)*psz2) || *psz1 == '\0' || *psz2 == '\0') break; -- cgit