mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-06 09:21:00 +01: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:
parent
dab2636a27
commit
061c76c5b1
1 changed files with 1 additions and 1 deletions
|
@ -724,7 +724,7 @@ static const char *capnames[] = {
|
|||
"audit_write",
|
||||
"audit_control",
|
||||
"setfcap",
|
||||
"mac_override"
|
||||
"mac_override",
|
||||
"syslog",
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue