aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/audit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/audit.c b/kernel/audit.c
index aa35422c0c42..42ce282728b6 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -540,8 +540,8 @@ static inline int audit_log_drain(struct audit_buffer *ab)
540 if (!audit_pid) { /* No daemon */ 540 if (!audit_pid) { /* No daemon */
541 int offset = ab->nlh ? NLMSG_SPACE(0) : 0; 541 int offset = ab->nlh ? NLMSG_SPACE(0) : 0;
542 int len = skb->len - offset; 542 int len = skb->len - offset;
543 printk(KERN_ERR "%*.*s\n", 543 skb->data[offset + len] = '\0';
544 len, len, skb->data + offset); 544 printk(KERN_ERR "%s\n", skb->data + offset);
545 } 545 }
546 kfree_skb(skb); 546 kfree_skb(skb);
547 ab->nlh = NULL; 547 ab->nlh = NULL;