From 4847bbaad372c7c51811bafe2fdf3ffbf28d9a69 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 15 Jan 2009 00:09:18 +0100 Subject: dirvec, songvec: sort using g_utf8_collate() Path names in the directory and song structs are always encoded in UTF-8. Don't use strcmp(), it cannot handle UTF-8 characters properly. Use GLib's UTF-8 aware g_utf8_collate() function for that. --- src/dirvec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dirvec.c') diff --git a/src/dirvec.c b/src/dirvec.c index 774730382..8fa9cde77 100644 --- a/src/dirvec.c +++ b/src/dirvec.c @@ -19,7 +19,7 @@ static int dirvec_cmp(const void *d1, const void *d2) { const struct directory *a = ((const struct directory * const *)d1)[0]; const struct directory *b = ((const struct directory * const *)d2)[0]; - return strcmp(a->path, b->path); + return g_utf8_collate(a->path, b->path); } void dirvec_init(void) -- cgit v1.2.3