X-Git-Url: https://git.danieliu.xyz/?p=dmenu.git;a=blobdiff_plain;f=lsx.c;h=fd286258d0433dbbe2c203be4859ed4e74facd2b;hp=325c50855a6e626ddc99f01f385606f405e00ae6;hb=86e9e6f1ecc4711d8fe447f5c0f2c1bd0feb8568;hpb=eadf090413c530e69e8568492ebeb4b4087bd2ad diff --git a/lsx.c b/lsx.c index 325c508..fd28625 100644 --- a/lsx.c +++ b/lsx.c @@ -14,8 +14,6 @@ main(int argc, char *argv[]) { if(argc < 2) lsx("."); - else if(!strcmp(argv[1], "-v")) - puts("lsx-0.2, © 2006-2011 dmenu engineers, see LICENSE for details"); else for(i = 1; i < argc; i++) lsx(argv[i]); return EXIT_SUCCESS; @@ -34,7 +32,7 @@ lsx(const char *dir) { } while((d = readdir(dp))) { snprintf(buf, sizeof buf, "%s/%s", dir, d->d_name); - if(stat(buf, &st) == 0 && S_ISREG(st.st_mode) && access(buf, X_OK) == 0) + if(!stat(buf, &st) && S_ISREG(st.st_mode) && access(buf, X_OK) == 0) puts(d->d_name); } closedir(dp);