mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-30 22:05:27 +00:00
Fix a missing comma in parser_misc.c capnames
The capnames list missed a comma, which lead to the funny "mac_overridesyslog" capability name. __debug_capabilities() seems to be the only user of capnames, which might explain why this bug wasn't noticed earlier. Acked-by: Seth Arnold <seth.arnold@canonical.com> for trunk, 2.10 and 2.9.
This commit is contained in:
@@ -724,7 +724,7 @@ static const char *capnames[] = {
|
||||
"audit_write",
|
||||
"audit_control",
|
||||
"setfcap",
|
||||
"mac_override"
|
||||
"mac_override",
|
||||
"syslog",
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user