Browse Source

stest: remove unneeded lstat

master
Connor Lane Smith 13 years ago
parent
commit
dcd6e771a1
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      stest.c

+ 1
- 2
stest.c View File

@ -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 */


Loading…
Cancel
Save