case insensitive match.

SVN revision: 24895
This commit is contained in:
Carsten Haitzler 2006-08-19 02:00:14 +00:00
parent b4109940bd
commit 9a2ccd1e64
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ e_fm_mime_filename_get(const char *fname)
for (l = mimes; l; l = l->next)
{
mime = l->data;
if (e_util_glob_match(fname, mime->glob))
if (e_util_glob_case_match(fname, mime->glob))
{
mimes = evas_list_remove_list(mimes, l);
mimes = evas_list_prepend(mimes, mime);