chiark / gitweb /
Merge branch 'master' into journal
[elogind.git] / src / update-utmp.c
index b06f5a06cb6be57a19de2838a6bc4cbb480c8836..12e4d110425c2050f09edb7e14a5a581b7ee2ec7 100644 (file)
@@ -373,8 +373,13 @@ int main(int argc, char *argv[]) {
         log_parse_environment();
         log_open();
 
+        umask(0022);
+
 #ifdef HAVE_AUDIT
-        if ((c.audit_fd = audit_open()) < 0)
+        if ((c.audit_fd = audit_open()) < 0 &&
+            /* If the kernel lacks netlink or audit support,
+             * don't worry about it. */
+            errno != EAFNOSUPPORT && errno != EPROTONOSUPPORT)
                 log_error("Failed to connect to audit log: %m");
 #endif