aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ucs <git-51d@ug0.fr>2020-08-10 13:02:47 +0200
committerGravatar ucs <git-51d@ug0.fr>2020-08-10 13:02:47 +0200
commitdd6976dfad44cd92b312443a09de1f26c8852b3c (patch)
tree53d903ef985124bd02af7f5f9df25823888cae12
parent90e0d5e3d6fa559d4074512517e438b660817c4b (diff)
downloadnnn-dd6976dfad44cd92b312443a09de1f26c8852b3c.tar.gz
Fix some directories not opening
-rw-r--r--src/nnn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 0e0e54a..9fe153a 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -4970,7 +4970,7 @@ static int dentfill(char *path, struct entry **ppdents)
if (S_ISDIR(sb.st_mode))
dentp->flags |= DIR_OR_LINK_TO_DIR;
#if !(defined(__sun) || defined(__HAIKU__)) /* no d_type */
- } else if (dp->d_type == DT_DIR || (dp->d_type == DT_LNK && S_ISDIR(sb.st_mode))) {
+ } else if (dp->d_type == DT_DIR || ((dp->d_type == DT_LNK || dp->d_type == DT_UNKNOWN) && S_ISDIR(sb.st_mode))) {
dentp->flags |= DIR_OR_LINK_TO_DIR;
#endif
}