diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-30 18:04:57 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-07-31 02:28:26 -0700 |
commit | 1a3a206f7f2aa50545cc3d056405ad7bc3c9bca8 (patch) | |
tree | 3eb0cfd199701941e7bf3cfb9d2effb165a5c79c /net/ipv6 | |
parent | fea1ab0fcf117bc1e9c9285af6463d31d9cc0ac6 (diff) | |
download | op-kernel-dev-1a3a206f7f2aa50545cc3d056405ad7bc3c9bca8.zip op-kernel-dev-1a3a206f7f2aa50545cc3d056405ad7bc3c9bca8.tar.gz |
[NETFILTER]: Make nf_ct_ipv6_skip_exthdr() static.
nf_ct_ipv6_skip_exthdr() can now become static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c b/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c index 36df221..3153e15 100644 --- a/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c +++ b/net/ipv6/netfilter/nf_conntrack_l3proto_ipv6.c @@ -86,8 +86,8 @@ static int ipv6_print_conntrack(struct seq_file *s, * - Note also special handling of AUTH header. Thanks to IPsec wizards. */ -int nf_ct_ipv6_skip_exthdr(const struct sk_buff *skb, int start, u8 *nexthdrp, - int len) +static int nf_ct_ipv6_skip_exthdr(const struct sk_buff *skb, int start, + u8 *nexthdrp, int len) { u8 nexthdr = *nexthdrp; |