summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/filetypes.c6
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)
328 } 328 }
329 329
330 /* filter out non rock files */ 330 /* filter out non rock files */
331 if (!strcasecmp( 331 if (strcasecmp(
332 &entry->d_name[strlen(entry->d_name) - sizeof(ROCK_EXTENSION) -1], 332 &entry->d_name[strlen(entry->d_name) - sizeof(ROCK_EXTENSION) + 1],
333 ROCK_EXTENSION)) { 333 ROCK_EXTENSION)) {
334 continue; 334 continue;
335 } 335 }
336 336