summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/rule.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/rule.c b/src/rule.c
index 43cc4a8a..92b83f08 100644
--- a/src/rule.c
+++ b/src/rule.c
@@ -1013,10 +1013,15 @@ static int do_list_tables(struct netlink_ctx *ctx, struct cmd *cmd)
{
struct table *table;
- list_for_each_entry(table, &table_list, list)
+ list_for_each_entry(table, &table_list, list) {
+ if (cmd->handle.family != NFPROTO_UNSPEC &&
+ cmd->handle.family != table->handle.family)
+ continue;
+
printf("table %s %s\n",
family2str(table->handle.family),
table->handle.table);
+ }
return 0;
}