From: Pablo Neira Ayuso Date: Mon, 23 Apr 2018 23:05:11 +0000 (+0200) Subject: netlink: netlink_list_chains() callers always wants all existing chains X-Git-Tag: v0.8.4~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b7c658fff3a41fa58fcbcd229e1b1f0f4be03b3c;p=thirdparty%2Fnftables.git netlink: netlink_list_chains() callers always wants all existing chains Remove dead code, callers always need this to dump all of the existing chains. Signed-off-by: Pablo Neira Ayuso --- diff --git a/src/netlink.c b/src/netlink.c index d668fa8c..8e345536 100644 --- a/src/netlink.c +++ b/src/netlink.c @@ -711,7 +711,6 @@ int netlink_list_chains(struct netlink_ctx *ctx, const struct handle *h, const struct location *loc) { struct nftnl_chain_list *chain_cache; - struct chain *chain; chain_cache = mnl_nft_chain_dump(ctx, h->family); if (chain_cache == NULL) { @@ -725,20 +724,7 @@ int netlink_list_chains(struct netlink_ctx *ctx, const struct handle *h, nftnl_chain_list_foreach(chain_cache, list_chain_cb, ctx); nftnl_chain_list_free(chain_cache); - /* Caller wants all existing chains */ - if (h->chain == NULL) - return 0; - - /* Check if this chain exists, otherwise return an error */ - list_for_each_entry(chain, &ctx->list, list) { - if (strcmp(chain->handle.chain, h->chain) == 0) - return 0; - } - - return netlink_io_error(ctx, NULL, - "Could not find chain `%s' in table `%s': %s", - h->chain, h->table, - strerror(ENOENT)); + return 0; } int netlink_flush_chain(struct netlink_ctx *ctx, const struct cmd *cmd)