From: John Johansen Date: Tue, 19 Feb 2013 00:13:34 +0000 (-0800) Subject: apparmor: fix the audit type table X-Git-Tag: v3.12-rc1~502^2~13^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b492d50bf597b87ab7ea1e738ec837f74b11594e;p=kernel%2Fkernel-generic.git apparmor: fix the audit type table The audit type table is missing a comma so that KILLED comes out as KILLEDAUTO. Signed-off-by: John Johansen Acked-by: Steve Beattie --- diff --git a/security/apparmor/audit.c b/security/apparmor/audit.c index 3ae28db..031d2d9 100644 --- a/security/apparmor/audit.c +++ b/security/apparmor/audit.c @@ -88,7 +88,7 @@ static const char *const aa_audit_type[] = { "HINT", "STATUS", "ERROR", - "KILLED" + "KILLED", "AUTO" };