Update of /cvsroot/rockbox/apps
In directory sc8-pr-cvs1:/tmp/cvs-serv11264
Modified Files:
tree.c
Log Message:
Case insensitive compare for BOOTFILE
Index: tree.c
===================================================================
RCS file: /cvsroot/rockbox/apps/tree.c,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -b -r1.210 -r1.211
--- tree.c 14 Nov 2003 16:10:38 -0000 1.210
+++ tree.c 24 Nov 2003 09:29:16 -0000 1.211
@@ -318,7 +318,7 @@
}
/* memorize/compare details about the boot file */
- if ((currdir[1] == 0) && !strcmp(entry->d_name, BOOTFILE)) {
+ if ((currdir[1] == 0) && !stricmp(entry->d_name, BOOTFILE)) {
if (boot_size) {
if ((entry->size != boot_size) ||
(entry->startcluster != boot_cluster))
|