summaryrefslogtreecommitdiffstats
path: root/kernel/auditfilter.c
diff options
context:
space:
mode:
authorSteve Grubb <sgrubb@redhat.com>2016-11-16 16:14:33 -0500
committerPaul Moore <paul@paul-moore.com>2016-11-20 15:38:00 -0500
commitc1e8f06d7a0eea232ce0767471e1b4756ccab70a (patch)
tree5b33f318b333b8bf61e2f24f9767bc977b2c261e /kernel/auditfilter.c
parent833fc48d18ce3595990b405ae82a160b33028994 (diff)
downloadop-kernel-dev-c1e8f06d7a0eea232ce0767471e1b4756ccab70a.zip
op-kernel-dev-c1e8f06d7a0eea232ce0767471e1b4756ccab70a.tar.gz
audit: fix formatting of AUDIT_CONFIG_CHANGE events
The AUDIT_CONFIG_CHANGE events sometimes use a op= field. The current code logs the value of the field with quotes. This field is documented to not be encoded, so it should not have quotes. Signed-off-by: Steve Grubb <sgrubb@redhat.com> Reviewed-by: Richard Guy Briggs <rgb@redhat.com> [PM: reformatted commit description to make checkpatch.pl happy] Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'kernel/auditfilter.c')
-rw-r--r--kernel/auditfilter.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/auditfilter.c b/kernel/auditfilter.c
index 85d9cac..632e90d 100644
--- a/kernel/auditfilter.c
+++ b/kernel/auditfilter.c
@@ -1074,8 +1074,7 @@ static void audit_log_rule_change(char *action, struct audit_krule *rule, int re
return;
audit_log_format(ab, "auid=%u ses=%u" ,loginuid, sessionid);
audit_log_task_context(ab);
- audit_log_format(ab, " op=");
- audit_log_string(ab, action);
+ audit_log_format(ab, " op=%s", action);
audit_log_key(ab, rule->filterkey);
audit_log_format(ab, " list=%d res=%d", rule->listnr, res);
audit_log_end(ab);
OpenPOWER on IntegriCloud