diff options
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 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; |