diff options
author | John Johansen <john.johansen@canonical.com> | 2013-02-18 19:13:34 -0500 |
---|---|---|
committer | John Johansen <john.johansen@canonical.com> | 2013-04-28 03:37:41 -0400 |
commit | b492d50bf597b87ab7ea1e738ec837f74b11594e (patch) | |
tree | a490f2acbb11429eb797c7f38e28f71db098962b /security | |
parent | ed686308c6837ff67f56e4115d0fd6bdc65a4313 (diff) |
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 <john.johansen@canonical.com>
Acked-by: Steve Beattie <sbeattie@ubuntu.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/apparmor/audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/apparmor/audit.c b/security/apparmor/audit.c index 3ae28db5a64f..031d2d9dd695 100644 --- a/security/apparmor/audit.c +++ b/security/apparmor/audit.c | |||
@@ -88,7 +88,7 @@ static const char *const aa_audit_type[] = { | |||
88 | "HINT", | 88 | "HINT", |
89 | "STATUS", | 89 | "STATUS", |
90 | "ERROR", | 90 | "ERROR", |
91 | "KILLED" | 91 | "KILLED", |
92 | "AUTO" | 92 | "AUTO" |
93 | }; | 93 | }; |
94 | 94 | ||