diff options
author | Taehee Yoo <ap420073@gmail.com> | 2018-02-11 23:28:18 +0900 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2018-03-05 23:15:43 +0100 |
commit | 433029ecc62788296cacca50ceb24db90c17a4a2 (patch) | |
tree | 556a13f73348d3fefce4c343f414331a9f905de1 /include/net | |
parent | 580c7d9e4cc69802189b872ad2df0d704c649441 (diff) | |
download | linux-433029ecc62788296cacca50ceb24db90c17a4a2.tar.gz linux-433029ecc62788296cacca50ceb24db90c17a4a2.tar.bz2 linux-433029ecc62788296cacca50ceb24db90c17a4a2.zip |
netfilter: nf_conntrack_broadcast: remove useless parameter
parameter protoff in nf_conntrack_broadcast_help is not used anywhere.
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netfilter/nf_conntrack_helper.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/net/netfilter/nf_conntrack_helper.h b/include/net/netfilter/nf_conntrack_helper.h index fc39bbaf107c..32c2a94a219d 100644 --- a/include/net/netfilter/nf_conntrack_helper.h +++ b/include/net/netfilter/nf_conntrack_helper.h @@ -132,8 +132,7 @@ void nf_conntrack_helper_pernet_fini(struct net *net); int nf_conntrack_helper_init(void); void nf_conntrack_helper_fini(void); -int nf_conntrack_broadcast_help(struct sk_buff *skb, unsigned int protoff, - struct nf_conn *ct, +int nf_conntrack_broadcast_help(struct sk_buff *skb, struct nf_conn *ct, enum ip_conntrack_info ctinfo, unsigned int timeout); |