diff options
-rw-r--r-- | stest.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -54,8 +54,7 @@ void | |||
54 | test(const char *path, const char *name) { | 54 | test(const char *path, const char *name) { |
55 | struct stat st, ln; | 55 | struct stat st, ln; |
56 | 56 | ||
57 | if(!stat(path, &st) && !lstat(path, &ln) | 57 | if(!stat(path, &st) && ( FLAG('a') || name[0] != '.') /* hidden files */ |
58 | && ( FLAG('a') || name[0] != '.') /* hidden */ | ||
59 | && (!FLAG('b') || S_ISBLK(st.st_mode)) /* block special */ | 58 | && (!FLAG('b') || S_ISBLK(st.st_mode)) /* block special */ |
60 | && (!FLAG('c') || S_ISCHR(st.st_mode)) /* character special */ | 59 | && (!FLAG('c') || S_ISCHR(st.st_mode)) /* character special */ |
61 | && (!FLAG('d') || S_ISDIR(st.st_mode)) /* directory */ | 60 | && (!FLAG('d') || S_ISDIR(st.st_mode)) /* directory */ |