From fa5cf8edeaf57c8ad3874c10998021cc3c240df5 Mon Sep 17 00:00:00 2001 From: Michael Hohmuth Date: Tue, 2 Aug 2011 22:10:06 +0000 Subject: Database: Fix to support case-sensitive file systems containing audio files with names differing only in capitalization. Thanks to Slasheri for the fix. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30241 a1c6a512-1295-4272-9138-f99709370657 --- apps/tagcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/tagcache.c') diff --git a/apps/tagcache.c b/apps/tagcache.c index 60d676e..c6a08fe 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -503,7 +503,7 @@ static long find_entry_disk(const char *filename_raw, bool localfd) return -3; } - if (!strcasecmp(filename, buf)) + if (!strcmp(filename, buf)) { last_pos = pos_history[pos_history_idx]; found = true; -- cgit v1.1