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 3ae28db5a64fb8595aadf512ebca42020e4e8106..031d2d9dd6950b7e6c1bf6f3b16f2a37a9ab9e22 100644 (file)
@@ -88,7 +88,7 @@ static const char *const aa_audit_type[] = {
        "HINT",
        "STATUS",
        "ERROR",
-       "KILLED"
+       "KILLED",
        "AUTO"
 };