apparmor: fix the audit type table
authorJohn Johansen <john.johansen@canonical.com>
Tue, 19 Feb 2013 00:13:34 +0000 (16:13 -0800)
committerJohn Johansen <john.johansen@canonical.com>
Sun, 28 Apr 2013 07:37:41 +0000 (00:37 -0700)
The audit type table is missing a comma so that KILLED comes out as
KILLEDAUTO.

Signed-off-by: John Johansen <john.johansen@canonical.com>
Acked-by: Steve Beattie <sbeattie@ubuntu.com>
security/apparmor/audit.c

index 3ae28db..031d2d9 100644 (file)
@@ -88,7 +88,7 @@ static const char *const aa_audit_type[] = {
        "HINT",
        "STATUS",
        "ERROR",
-       "KILLED"
+       "KILLED",
        "AUTO"
 };