diff options
author | John Johansen <john.johansen@canonical.com> | 2013-02-19 01:13:34 +0100 |
---|---|---|
committer | John Johansen <john.johansen@canonical.com> | 2013-04-28 09:37:41 +0200 |
commit | b492d50bf597b87ab7ea1e738ec837f74b11594e (patch) | |
tree | a490f2acbb11429eb797c7f38e28f71db098962b /security/apparmor | |
parent | apparmor: reserve and mask off the top 8 bits of the base field (diff) | |
download | linux-b492d50bf597b87ab7ea1e738ec837f74b11594e.tar.xz 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.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[] = { "HINT", "STATUS", "ERROR", - "KILLED" + "KILLED", "AUTO" }; |