netfilter: nf_tables: fix wrong format in request_module()
The intended format in request_module is %.*s instead of %*.s. Reported-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
a9bdd83656
commit
2fec6bb6f4
@ -152,8 +152,8 @@ nf_tables_chain_type_lookup(const struct nft_af_info *afi,
|
|||||||
#ifdef CONFIG_MODULES
|
#ifdef CONFIG_MODULES
|
||||||
if (autoload) {
|
if (autoload) {
|
||||||
nfnl_unlock(NFNL_SUBSYS_NFTABLES);
|
nfnl_unlock(NFNL_SUBSYS_NFTABLES);
|
||||||
request_module("nft-chain-%u-%*.s", afi->family,
|
request_module("nft-chain-%u-%.*s", afi->family,
|
||||||
nla_len(nla)-1, (const char *)nla_data(nla));
|
nla_len(nla), (const char *)nla_data(nla));
|
||||||
nfnl_lock(NFNL_SUBSYS_NFTABLES);
|
nfnl_lock(NFNL_SUBSYS_NFTABLES);
|
||||||
type = __nf_tables_chain_type_lookup(afi->family, nla);
|
type = __nf_tables_chain_type_lookup(afi->family, nla);
|
||||||
if (type != NULL)
|
if (type != NULL)
|
||||||
|
Loading…
Reference in New Issue
Block a user