From 334bd73792f22a5858bf7afd6df2400f5ac36b26 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 23 Jun 2015 13:26:45 +0200 Subject: lib/icu/Collate: fall back to strcoll() instead of strcasecmp() --- src/lib/icu/Collate.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/icu') diff --git a/src/lib/icu/Collate.cxx b/src/lib/icu/Collate.cxx index 902192c06..7bc631754 100644 --- a/src/lib/icu/Collate.cxx +++ b/src/lib/icu/Collate.cxx @@ -136,7 +136,7 @@ IcuCollate(const char *a, const char *b) #elif defined(HAVE_GLIB) return g_utf8_collate(a, b); #else - return strcasecmp(a, b); + return strcoll(a, b); #endif } -- cgit v1.2.3