projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9bdd83
)
netfilter: nf_tables: fix wrong format in request_module()
author
Pablo Neira Ayuso
<
[email protected]
>
Mon, 31 Mar 2014 10:26:39 +0000
(12:26 +0200)
committer
Pablo Neira Ayuso
<
[email protected]
>
Thu, 3 Apr 2014 21:52:50 +0000
(23:52 +0200)
The intended format in request_module is %.*s instead of %*.s.
Reported-by: Florian Westphal <
[email protected]
>
Signed-off-by: Pablo Neira Ayuso <
[email protected]
>
net/netfilter/nf_tables_api.c
patch
|
blob
|
history
diff --git
a/net/netfilter/nf_tables_api.c
b/net/netfilter/nf_tables_api.c
index 43ae48721254e42e68939ea704ab7fc490550130..3fd159db9f06bc31d3da81d8cb3e5e8f2bb3ebc2 100644
(file)
--- a/
net/netfilter/nf_tables_api.c
+++ b/
net/netfilter/nf_tables_api.c
@@
-152,8
+152,8
@@
nf_tables_chain_type_lookup(const struct nft_af_info *afi,
#ifdef CONFIG_MODULES
if (autoload) {
nfnl_unlock(NFNL_SUBSYS_NFTABLES);
- request_module("nft-chain-%u-%
*.
s", afi->family,
- nla_len(nla)
-1
, (const char *)nla_data(nla));
+ request_module("nft-chain-%u-%
.*
s", afi->family,
+ nla_len(nla), (const char *)nla_data(nla));
nfnl_lock(NFNL_SUBSYS_NFTABLES);
type = __nf_tables_chain_type_lookup(afi->family, nla);
if (type != NULL)