From b4100ba0a86b0f8ed5cfc6af9b754e2e97e50b69 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Mon, 3 Aug 2015 18:04:43 +0200 Subject: src: restore nft list tables Iterate over the ctx->list which is where the table objects are after calling netlink_list_tables(). Fixes: e4d21958c835 ("rule: add do_list_tables()") Signed-off-by: Pablo Neira Ayuso --- src/rule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/rule.c') diff --git a/src/rule.c b/src/rule.c index 1e712a55..09d1ffd4 100644 --- a/src/rule.c +++ b/src/rule.c @@ -907,7 +907,7 @@ static int do_list_tables(struct netlink_ctx *ctx, struct cmd *cmd) if (netlink_list_tables(ctx, &cmd->handle, &cmd->location) < 0) return -1; - list_for_each_entry(table, &table_list, list) + list_for_each_entry(table, &ctx->list, list) printf("table %s %s\n", family2str(table->handle.family), table->handle.table); -- cgit v1.2.3