From 21ea2ad83046f154cca68a48aaa063911d5641e4 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Fri, 3 Aug 2012 08:29:35 +0200 Subject: [PATCH] glob: fix GLOB_SORT The arguments to collated_compare are actually pointers to pointers to char, not pointers to char. Signed-off-by: Sascha Hauer --- lib/glob.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/glob.c b/lib/glob.c index c4c60674b..1b0137b9a 100644 --- a/lib/glob.c +++ b/lib/glob.c @@ -78,8 +78,8 @@ int glob_pattern_p(const char *pattern, int quote) /* Do a collated comparison of A and B. */ static int collated_compare(const void *a, const void *b) { - const char *s1 = a; - const char *s2 = b; + const char *const s1 = *(const char *const *)a; + const char *const s2 = *(const char *const *)b; if (s1 == s2) return 0;