Commit 8d4bc5b6 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

ANSIfy a couple of functions in netfilter

	It's C, not C++...
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 6d14bfe7
...@@ -194,7 +194,7 @@ static struct nf_ct_ext_type helper_extend __read_mostly = { ...@@ -194,7 +194,7 @@ static struct nf_ct_ext_type helper_extend __read_mostly = {
.id = NF_CT_EXT_HELPER, .id = NF_CT_EXT_HELPER,
}; };
int nf_conntrack_helper_init() int nf_conntrack_helper_init(void)
{ {
int err; int err;
...@@ -216,7 +216,7 @@ int nf_conntrack_helper_init() ...@@ -216,7 +216,7 @@ int nf_conntrack_helper_init()
return err; return err;
} }
void nf_conntrack_helper_fini() void nf_conntrack_helper_fini(void)
{ {
nf_ct_extend_unregister(&helper_extend); nf_ct_extend_unregister(&helper_extend);
nf_ct_free_hashtable(nf_ct_helper_hash, nf_ct_helper_vmalloc, nf_ct_free_hashtable(nf_ct_helper_hash, nf_ct_helper_vmalloc,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment