These functions calls, and the related `struct nft_table *nlt' are unused. Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@xxxxxxxxx> --- src/netlink.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/netlink.c b/src/netlink.c index 6e797dc..ea02972 100644 --- a/src/netlink.c +++ b/src/netlink.c @@ -703,7 +703,6 @@ int netlink_list_tables(struct netlink_ctx *ctx, const struct handle *h, const struct location *loc) { struct nft_table_list *table_cache; - struct nft_table *nlt; table_cache = mnl_nft_table_dump(nf_sock, h->family); if (table_cache == NULL) @@ -711,9 +710,7 @@ int netlink_list_tables(struct netlink_ctx *ctx, const struct handle *h, "Could not receive tables from kernel: %s", strerror(errno)); - nlt = alloc_nft_table(h); nft_table_list_foreach(table_cache, list_table_cb, ctx); - nft_table_free(nlt); nft_table_list_free(table_cache); return 0; } -- 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