diff options
author | Michael Hohmuth <sideral@rockbox.org> | 2011-08-02 22:10:06 +0000 |
---|---|---|
committer | Michael Hohmuth <sideral@rockbox.org> | 2011-08-02 22:10:06 +0000 |
commit | fa5cf8edeaf57c8ad3874c10998021cc3c240df5 (patch) | |
tree | a986dcf7893cd7035851c4ea7bce806dd0983c7d /apps | |
parent | 7155be6ca49ee71f565c8d5e196e189540edf2c8 (diff) |
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
Diffstat (limited to 'apps')
-rw-r--r-- | apps/tagcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index 60d676e79e..c6a08fea4f 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; |