summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-18 08:23:07 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-18 08:23:07 +0000
commit9296dfb2c69662a738f326d3dbc49e0fc5c73b05 (patch)
tree60c06327ef0bf1af8aeff881d9601b35f9d1806c
parentd38ab690727f51ac9eb38631961184d5768cfcf5 (diff)
downloadrockbox-9296dfb2c69662a738f326d3dbc49e0fc5c73b05.tar.gz
rockbox-9296dfb2c69662a738f326d3dbc49e0fc5c73b05.zip
check for .m3u extensions case insensitively
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1058 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/tree.c4
1 files 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;