]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
logind: (void)ify all things we knowingly ignore
authorLennart Poettering <lennart@poettering.net>
Tue, 24 Apr 2018 16:16:14 +0000 (18:16 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 27 Apr 2018 16:13:51 +0000 (18:13 +0200)
src/login/logind.c

index b0fd3f9cc5708c32c1b020c32065126d2834dfe3..385c9773995de9dc9a35815c50f1527078882c57 100644 (file)
@@ -1221,14 +1221,12 @@ int main(int argc, char *argv[]) {
                 goto finish;
         }
 
-        /* Always create the directories people can create inotify
-         * watches in. Note that some applications might check for the
-         * existence of /run/systemd/seats/ to determine whether
-         * logind is available, so please always make sure this check
-         * stays in. */
-        mkdir_label("/run/systemd/seats", 0755);
-        mkdir_label("/run/systemd/users", 0755);
-        mkdir_label("/run/systemd/sessions", 0755);
+        /* Always create the directories people can create inotify watches in. Note that some applications might check
+         * for the existence of /run/systemd/seats/ to determine whether logind is available, so please always make
+         * sure these directories are created early on and unconditionally. */
+        (void) mkdir_label("/run/systemd/seats", 0755);
+        (void) mkdir_label("/run/systemd/users", 0755);
+        (void) mkdir_label("/run/systemd/sessions", 0755);
 
         assert_se(sigprocmask_many(SIG_BLOCK, NULL, SIGHUP, SIGTERM, SIGINT, -1) >= 0);