From 5138e08372e142541674b95c379b6480fdbfae5f Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Sat, 16 Jan 2016 11:27:47 +0100 Subject: [PATCH] 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 for trunk, 2.10 and 2.9. --- parser/parser_misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/parser_misc.c b/parser/parser_misc.c index 06092a1d9..31c52d572 100644 --- a/parser/parser_misc.c +++ b/parser/parser_misc.c @@ -759,7 +759,7 @@ static const char *capnames[] = { "audit_write", "audit_control", "setfcap", - "mac_override" + "mac_override", "syslog", };