From 061c76c5b1613cf943d627059ed267b72c68ef52 Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Sat, 16 Jan 2016 11:27:26 +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 ca7f6f6ac..85a45d514 100644 --- a/parser/parser_misc.c +++ b/parser/parser_misc.c @@ -724,7 +724,7 @@ static const char *capnames[] = { "audit_write", "audit_control", "setfcap", - "mac_override" + "mac_override", "syslog", };