Commit Diff


commit - 8cc28cb4265b0c088ea909e58f42342b2214722e
commit + dcd6e771a1867353c14c46fc37e28d6d313cb3b1
blob - e75d321648100ab4fac4ab0c925d4bf962a7d562
blob + 9dbf9c11d4e2b9de71a366ef54959ed50687d372
--- stest.c
+++ stest.c
@@ -54,8 +54,7 @@ void
 test(const char *path, const char *name) {
 	struct stat st, ln;
 
-	if(!stat(path, &st) && !lstat(path, &ln)
-	&& ( FLAG('a') || name[0] != '.')                             /* hidden            */
+	if(!stat(path, &st) && ( FLAG('a') || name[0] != '.')         /* hidden files      */
 	&& (!FLAG('b') || S_ISBLK(st.st_mode))                        /* block special     */
 	&& (!FLAG('c') || S_ISCHR(st.st_mode))                        /* character special */
 	&& (!FLAG('d') || S_ISDIR(st.st_mode))                        /* directory         */