# nft list tables table ip nat instead of: # nft list tables table nat Signed-off-by: Pablo Neira Ayuso <pablo@xxxxxxxxxxxxx> --- src/rule.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/rule.c b/src/rule.c index b2090dd..39b4d9a 100644 --- a/src/rule.c +++ b/src/rule.c @@ -928,7 +928,9 @@ static int do_command_list(struct netlink_ctx *ctx, struct cmd *cmd) return -1; list_for_each_entry(table, &ctx->list, list) { - printf("table %s\n", table->handle.table); + printf("table %s %s\n", + family2str(table->handle.family), + table->handle.table); } return 0; } -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html