From 9296dfb2c69662a738f326d3dbc49e0fc5c73b05 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 18 Jun 2002 08:23:07 +0000 Subject: check for .m3u extensions case insensitively git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1058 a1c6a512-1295-4272-9138-f99709370657 --- apps/tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/tree.c b/apps/tree.c index e44d66d102..2392a667d1 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -164,7 +164,7 @@ static int showdir(char *path, int start) #ifdef HAVE_LCD_BITMAP if ( dircacheptr[i]->file ) { - if(!strcmp(&dircacheptr[i]->name[len-4], ".m3u")) + if(!strcasecmp(&dircacheptr[i]->name[len-4], ".m3u")) icon_type = Playlist; else icon_type=File; @@ -295,7 +295,7 @@ bool dirbrowse(char *root) int len=strlen(dircacheptr[dircursor+start]->name); lcd_stop_scroll(); if((len > 4) && - !strcmp(&dircacheptr[dircursor+start]->name[len-4], + !strcasecmp(&dircacheptr[dircursor+start]->name[len-4], ".m3u")) { playing = 2; -- cgit v1.2.3