Use strstr, not strcasestr, for dj2 and solaris :)

SVN revision: 27091
This commit is contained in:
Christopher Michael 2006-11-13 20:29:37 +00:00
parent 3eb8a21ede
commit 3da0131bcc
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ _fill_list(E_Config_Dialog_Data *cfdata, char *mtype)
m = l->data;
if (!m) return;
if (!strcasestr(m->mime, mtype)) continue;
if (!strstr(m->mime, mtype)) continue;
icon = edje_object_add(evas_object_evas_get(cfdata->gui.list));
tmp = e_fm_mime_icon_get(m->mime);