chiark / gitweb /
core: replace readdir_r with readdir
[elogind.git] / src / core / load-dropin.c
index a877e66098ae91c1ce885da80f198ebca0878879..35040090ac3bbe186d2d295b7b4630e76d3dc040 100644 (file)
@@ -63,12 +63,13 @@ static int iterate_dir(
 
         for (;;) {
                 struct dirent *de;
-                union dirent_storage buf;
                 _cleanup_free_ char *f = NULL;
                 int k;
 
-                k = readdir_r(d, &buf.de, &de);
-                if (k != 0) {
+                errno = 0;
+                de = readdir(d);
+                if (!de && errno != 0) {
+                        k = errno;
                         log_error("Failed to read directory %s: %s", path, strerror(k));
                         return -k;
                 }