summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2003-11-24 14:22:13 +0000
committerBjörn Stenberg <bjorn@haxx.se>2003-11-24 14:22:13 +0000
commitf11ffc04b3b7dc7f954d675ffa4222be55c0867b (patch)
treeb7e3be45820aa6dc3c8b5e452fd8ad05d1ba5b39
parent3316a0f78773707fb23d24e62859c4ca33bd381d (diff)
downloadrockbox-f11ffc04b3b7dc7f954d675ffa4222be55c0867b.tar.gz
rockbox-f11ffc04b3b7dc7f954d675ffa4222be55c0867b.zip
s/stricmp/strcasecmp/
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4064 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c
index cd44e05e90..b66fce04be 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -318,7 +318,7 @@ struct entry* load_and_sort_directory(char *dirname, int *dirfilter,
318 } 318 }
319 319
320 /* memorize/compare details about the boot file */ 320 /* memorize/compare details about the boot file */
321 if ((currdir[1] == 0) && !stricmp(entry->d_name, BOOTFILE)) { 321 if ((currdir[1] == 0) && !strcasecmp(entry->d_name, BOOTFILE)) {
322 if (boot_size) { 322 if (boot_size) {
323 if ((entry->size != boot_size) || 323 if ((entry->size != boot_size) ||
324 (entry->startcluster != boot_cluster)) 324 (entry->startcluster != boot_cluster))