summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2020-08-17 12:12:23 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2020-08-17 13:03:49 +0200
commitf8b1bc9d95920d977ee2a24bbda3f97cb563b1bc (patch)
treec3e25b67dd27130dac039aeaeb5a4b550e38f9e2 /src
parent0864c2d49ee8a1cc537568c05e14943186480125 (diff)
src: add comment support for map too
Extend and slightly rework tests/shell to cover this case too. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src')
-rw-r--r--src/parser_bison.y5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parser_bison.y b/src/parser_bison.y
index 7e094ff6..d4e99417 100644
--- a/src/parser_bison.y
+++ b/src/parser_bison.y
@@ -1896,6 +1896,11 @@ map_block : /* empty */ { $$ = $<set>-1; }
$1->init = $4;
$$ = $1;
}
+ | map_block comment_spec stmt_separator
+ {
+ $1->comment = $2;
+ $$ = $1;
+ }
| map_block set_mechanism stmt_separator
;