chiark / gitweb /
systemctl: drop [] around date in status output
[elogind.git] / src / tmpfiles.c
index 7bd5510d5f78948fb33b8afe6a61fc652a4c9d76..13e830db56b63ca3a9d593d174d3c46eab10f17e 100644 (file)
@@ -34,7 +34,7 @@
 #include "strv.h"
 #include "label.h"
 
-/* This reads all files listed in /etc/tempfiles.d/?*.conf and creates
+/* This reads all files listed in /etc/tmpfiles.d/?*.conf and creates
  * them in the file system. This is intended to be used to create
  * properly owned directories beneath /tmp, /var/tmp, /var/run and
  * /var/lock which are volatile and hence need to be recreated on
@@ -258,12 +258,12 @@ int main(int argc, char *argv[]) {
 
         label_init();
 
-        if ((n = scandir("/etc/tempfiles.d/", &de, scandir_filter, alphasort)) < 0) {
+        if ((n = scandir("/etc/tmpfiles.d/", &de, scandir_filter, alphasort)) < 0) {
 
                 if (errno == ENOENT)
                         r = EXIT_SUCCESS;
                 else
-                        log_error("Failed to enumerate /etc/tempfiles.d/ files: %m");
+                        log_error("Failed to enumerate /etc/tmpfiles.d/ files: %m");
 
                 goto finish;
         }
@@ -276,7 +276,7 @@ int main(int argc, char *argv[]) {
                 FILE *f;
                 unsigned j;
 
-                k = asprintf(&fn, "/etc/tempfiles.d/%s", de[i]->d_name);
+                k = asprintf(&fn, "/etc/tmpfiles.d/%s", de[i]->d_name);
                 free(de[i]);
 
                 if (k < 0) {