From: Pablo Neira Ayuso Date: Tue, 22 Sep 2015 22:14:33 +0000 (+0200) Subject: parser: show all tables via list tables with no family X-Git-Tag: v0.6~217 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de2ebd0e1d43361ecd879170b40bac76a503aa65;p=thirdparty%2Fnftables.git parser: show all tables via list tables with no family Default to the same behaviour that we get through `list ruleset', ie. # nft list tables table ip filter table ip6 filter # nft list tables ip table ip filter # nft list tables ip6 table ip6 filter Closes: http://bugzilla.netfilter.org/show_bug.cgi?id=1033 Signed-off-by: Pablo Neira Ayuso --- diff --git a/src/parser_bison.y b/src/parser_bison.y index 385e2140..36910a7f 100644 --- a/src/parser_bison.y +++ b/src/parser_bison.y @@ -767,7 +767,7 @@ list_cmd : TABLE table_spec { $$ = cmd_alloc(CMD_LIST, CMD_OBJ_TABLE, &$2, &@$, NULL); } - | TABLES tables_spec + | TABLES ruleset_spec { $$ = cmd_alloc(CMD_LIST, CMD_OBJ_TABLE, &$2, &@$, NULL); }