Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_int_config_mime.c 


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

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_mime.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- e_int_config_mime.c 11 Nov 2006 13:44:51 -0000      1.11
+++ e_int_config_mime.c 13 Nov 2006 20:29:37 -0000      1.12
@@ -187,7 +187,7 @@
        
        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);



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to