summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/basic/audit-util.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/basic/audit-util.c b/src/basic/audit-util.c
index 3f158caee..0a4062afd 100644
--- a/src/basic/audit-util.c
+++ b/src/basic/audit-util.c
@@ -83,10 +83,9 @@ bool use_audit(void) {
fd = socket(AF_NETLINK, SOCK_RAW|SOCK_CLOEXEC|SOCK_NONBLOCK, NETLINK_AUDIT);
if (fd < 0) {
cached_use = !IN_SET(errno, EAFNOSUPPORT, EPROTONOSUPPORT, EPERM);
- if (errno == EPERM)
- log_debug_errno(errno, "Audit access prohibited, won't talk to audit");
- }
- else {
+ if (!cached_use)
+ log_debug_errno(errno, "Won't talk to audit: %m");
+ } else {
cached_use = true;
safe_close(fd);
}