Fix problems with scanning fileinfo of files with uppercase extensions

This commit is contained in:
Ron Pedde 2005-02-22 07:23:09 +00:00
parent bc9577bbcc
commit de5ed17847
1 changed files with 1 additions and 1 deletions

View File

@ -976,7 +976,7 @@ int scan_get_fileinfo(char *file, MP3FILE *pmp3) {
/* dispatch to appropriate tag handler */
for(hdl = taghandlers ; hdl->suffix ; ++hdl)
if(!strcmp(hdl->suffix, pmp3->type))
if(!strcasecmp(hdl->suffix, pmp3->type))
break;
if(hdl->files)