1
0
Fork 0
forked from len0rd/rockbox

s/stricmp/strcasecmp/

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4064 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Björn Stenberg 2003-11-24 14:22:13 +00:00
parent 3316a0f787
commit f11ffc04b3

View file

@ -318,7 +318,7 @@ struct entry* load_and_sort_directory(char *dirname, int *dirfilter,
}
/* memorize/compare details about the boot file */
if ((currdir[1] == 0) && !stricmp(entry->d_name, BOOTFILE)) {
if ((currdir[1] == 0) && !strcasecmp(entry->d_name, BOOTFILE)) {
if (boot_size) {
if ((entry->size != boot_size) ||
(entry->startcluster != boot_cluster))