summaryrefslogtreecommitdiff
path: root/src/tmpfiles.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-03-03 16:29:50 +0100
committerLennart Poettering <lennart@poettering.net>2011-03-03 16:29:50 +0100
commit1a6f4df6c9437ed631080b7e006f666326063d36 (patch)
treee31c6ceec9cb5e6fac75def731c9b80a67680bdd /src/tmpfiles.c
parentfc7a744cc44cdb80bf9bc6304fc3f80ca2cb65f9 (diff)
dirent: support DT_UNKNOWN where necessary for compat with reiserfs
Diffstat (limited to 'src/tmpfiles.c')
-rw-r--r--src/tmpfiles.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tmpfiles.c b/src/tmpfiles.c
index 0c3b88d35b..68af37aab0 100644
--- a/src/tmpfiles.c
+++ b/src/tmpfiles.c
@@ -775,7 +775,8 @@ static int scandir_filter(const struct dirent *d) {
return 0;
if (d->d_type != DT_REG &&
- d->d_type != DT_LNK)
+ d->d_type != DT_LNK &&
+ d->d_type != DT_UNKNOWN)
return 0;
return endswith(d->d_name, ".conf");