Enlightenment CVS committal

Author  : raster
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_fm.c 


Log Message:


silly strcmp oops. fix.

===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_fm.c,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -3 -r1.92 -r1.93
--- e_fm.c      15 Oct 2006 23:24:57 -0000      1.92
+++ e_fm.c      15 Oct 2006 23:52:36 -0000      1.93
@@ -3797,7 +3797,7 @@
        /* skip dotfiles if we're not showing hidden files */
        if (dp->d_name[0] == '.' && !sd->show_hidden_files) return 1;
        /* always hide .order files */
-       if (!strcmp(dp->d_name[0], ".order")) return 1;
+       if (!strcmp(dp->d_name, ".order")) return 1;
        _e_fm2_file_add(data, dp->d_name, sd->order_file, NULL, 0);
      }
    return 1;



-------------------------------------------------------------------------
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