Browse Source

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>
John Johansen 12 năm trước cách đây
mục cha
commit
b492d50bf5
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      security/apparmor/audit.c

+ 1 - 1
security/apparmor/audit.c

@@ -88,7 +88,7 @@ static const char *const aa_audit_type[] = {
 	"HINT",
 	"STATUS",
 	"ERROR",
-	"KILLED"
+	"KILLED",
 	"AUTO"
 };