chiark / gitweb /
execute: make setup_pam() return -errno when possible
[elogind.git] / src / manager.c
index 6d202588939a3485bcb37b8c4b862a95c4346123..111167a8c2a19147af66dfec669a72de2b2f444a 100644 (file)
@@ -286,7 +286,10 @@ int manager_new(ManagerRunningAs running_as, Manager **_m) {
                 goto fail;
 
 #ifdef HAVE_AUDIT
-        if ((m->audit_fd = audit_open()) < 0)
+        if ((m->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