chiark / gitweb /
delta: ensure that d_type will be set on every fs
authorLukas Nykryn <lnykryn@redhat.com>
Thu, 9 Jan 2014 15:43:00 +0000 (16:43 +0100)
committerLukas Nykryn <lnykryn@redhat.com>
Thu, 9 Jan 2014 15:43:00 +0000 (16:43 +0100)
src/delta/delta.c

index 19eaed36316c6fe9a0dabf2a051ff8d674c01866..369f8f862a86605026780fb7a9fb3fbabafea88d 100644 (file)
@@ -316,6 +316,8 @@ static int enumerate_dir(Hashmap *top, Hashmap *bottom, Hashmap *drops, const ch
                 if (!de)
                         return -errno;
 
                 if (!de)
                         return -errno;
 
+                dirent_ensure_type(d, de);
+
                 if (dropins && de->d_type == DT_DIR && endswith(de->d_name, ".d"))
                         enumerate_dir_d(top, bottom, drops, path, de->d_name);
 
                 if (dropins && de->d_type == DT_DIR && endswith(de->d_name, ".d"))
                         enumerate_dir_d(top, bottom, drops, path, de->d_name);