From efe61a86bf5039cd5b07b838680fdfbb17c8c42a Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 23 Oct 2002 16:06:04 +0500 Subject: [PATCH] ctype-bin.c: max_sort_char is 255 for binary strings/ctype-bin.c: max_sort_char is 255 for binary --- strings/ctype-bin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strings/ctype-bin.c b/strings/ctype-bin.c index e03f0e3ea5e..0d08c89c116 100644 --- a/strings/ctype-bin.c +++ b/strings/ctype-bin.c @@ -177,6 +177,6 @@ CHARSET_INFO my_charset_bin = my_strncasecmp_bin, /* strncasecmp */ my_hash_caseup_bin, /* hash_caseup */ my_hash_sort_bin, /* hash_sort */ - 0 /* max_sort_char */ + 255 /* max_sort_char */ };