List symlink with target missing

This commit is contained in:
Arun Prakash Jana 2019-08-13 04:22:34 +05:30
parent 0cf77c2ac6
commit 5ea8dee428
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 12 additions and 2 deletions

View File

@ -3004,8 +3004,18 @@ static int dentfill(char *path, struct entry **dents)
}
if (fstatat(fd, namep, &sb, flags) == -1) {
DPRINTF_S(namep);
continue;
/* List a symlink with target missing */
if (!flags && errno == ENOENT) {
if (fstatat(fd, namep, &sb, AT_SYMLINK_NOFOLLOW) == -1) {
DPRINTF_S(namep);
DPRINTF_S(strerror(errno));
continue;
}
} else {
DPRINTF_S(namep);
DPRINTF_S(strerror(errno));
continue;
}
}
if (n == total_dents) {