From 254675ef94da1c372751c5271e70e0e8d3db92a4 Mon Sep 17 00:00:00 2001 From: sideral Date: Tue, 2 Aug 2011 22:10:06 +0000 Subject: [PATCH] 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(-) diff --git a/apps/tagcache.c b/apps/tagcache.c index 60d676e79..c6a08fea4 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; -- 2.11.4.GIT