On Mon, Jan 04, 2016 at 01:18:31PM +0100, Arturo Borrero Gonzalez wrote: > diff --git a/src/rule.c b/src/rule.c > index 18ff592..c0e45aa 100644 > --- a/src/rule.c > +++ b/src/rule.c > @@ -1009,12 +1009,24 @@ static int do_list_sets(struct netlink_ctx *ctx, struct cmd *cmd) > }; > struct table *table; > struct set *set; > + bool printable_sets = false; > > list_for_each_entry(table, &table_list, list) { > if (cmd->handle.family != NFPROTO_UNSPEC && > cmd->handle.family != table->handle.family) > continue; > > + /* if there are no printable sets, don't print empty table */ > + list_for_each_entry(set, &table->sets, list) { > + if (!set->flags & SET_F_ANONYMOUS) { Wait, this should be: if (!(set->flags & SET_F_ANONYMOUS)) instead. I'm fixing this here. -- 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