summaryrefslogtreecommitdiffstats
path: root/security/apparmor
diff options
context:
space:
mode:
authorJohn Johansen2013-02-19 01:13:34 +0100
committerJohn Johansen2013-04-28 09:37:41 +0200
commitb492d50bf597b87ab7ea1e738ec837f74b11594e (patch)
treea490f2acbb11429eb797c7f38e28f71db098962b /security/apparmor
parentapparmor: reserve and mask off the top 8 bits of the base field (diff)
downloadkernel-qcow2-linux-b492d50bf597b87ab7ea1e738ec837f74b11594e.tar.gz
kernel-qcow2-linux-b492d50bf597b87ab7ea1e738ec837f74b11594e.tar.xz
kernel-qcow2-linux-b492d50bf597b87ab7ea1e738ec837f74b11594e.zip
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/apparmor')
-rw-r--r--security/apparmor/audit.c2
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[] = {
"HINT",
"STATUS",
"ERROR",
- "KILLED"
+ "KILLED",
"AUTO"
};