From: Phil Sutter Date: Fri, 10 Jul 2020 19:12:34 +0000 (+0200) Subject: nft: Drop pointless nft_xt_builtin_init() call X-Git-Tag: v1.8.6~26 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7a700c47fe121c65c550ab24de3284abbb1e82f8;p=thirdparty%2Fiptables.git nft: Drop pointless nft_xt_builtin_init() call When renaming a chain, either everything is in place already or the command will bail anyway. So just drop this superfluous call. Signed-off-by: Phil Sutter --- diff --git a/iptables/nft.c b/iptables/nft.c index 52ee809b..e3811f5f 100644 --- a/iptables/nft.c +++ b/iptables/nft.c @@ -1937,8 +1937,6 @@ int nft_chain_user_rename(struct nft_handle *h,const char *chain, return 0; } - nft_xt_builtin_init(h, table); - /* Config load changed errno. Ensure genuine info for our callers. */ errno = 0;