]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
do not filter out deprecated USER audit messages
authorJérémy Rosen <jeremy.rosen@enst-bretagne.fr>
Sat, 16 Jun 2018 08:34:41 +0000 (10:34 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 18 Jun 2018 12:48:09 +0000 (14:48 +0200)
src/journal/journald-audit.c

index 058c921c5eaa6eb430b28f9f1c674ada71cb6843..5e56f3cf425ce72c4a0fa4742e28f8abec7e9068 100644 (file)
@@ -441,8 +441,8 @@ void server_process_audit_message(
         if (IN_SET(nl->nlmsg_type, NLMSG_NOOP, NLMSG_ERROR))
                 return;
 
-        /* Below AUDIT_FIRST_USER_MSG theer are only control messages, let's ignore those */
-        if (nl->nlmsg_type < AUDIT_FIRST_USER_MSG)
+        /* Except AUDIT_USER, all messsages below AUDIT_FIRST_USER_MSG are control messages, let's ignore those */
+        if (nl->nlmsg_type < AUDIT_FIRST_USER_MSG && nl->nlmsg_type != AUDIT_USER)
                 return;
 
         process_audit_string(s, nl->nlmsg_type, NLMSG_DATA(nl), nl->nlmsg_len - ALIGN(sizeof(struct nlmsghdr)));