diff options
author | Hardeep Sidhu <dyp@pobox.com> | 2004-05-27 01:43:23 +0000 |
---|---|---|
committer | Hardeep Sidhu <dyp@pobox.com> | 2004-05-27 01:43:23 +0000 |
commit | 853ee1c0f34b2791c72f66b714e9183110c16329 (patch) | |
tree | a721fe2876dbad0d46aaec35d7eb770aa56acf91 /apps | |
parent | 9d13207495f021043b90fd003cf87f95944d3874 (diff) |
Fixed bug in .rock extension check when scanning plugins
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4709 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/filetypes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c index 661defa337..b9f5dd1935 100644 --- a/apps/filetypes.c +++ b/apps/filetypes.c @@ -328,9 +328,9 @@ static void scan_plugins(void) } /* filter out non rock files */ - if (!strcasecmp( - &entry->d_name[strlen(entry->d_name) - sizeof(ROCK_EXTENSION) -1], - ROCK_EXTENSION)) { + if (strcasecmp( + &entry->d_name[strlen(entry->d_name) - sizeof(ROCK_EXTENSION) + 1], + ROCK_EXTENSION)) { continue; } |