diff options
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> | 2006-01-17 02:26:34 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-01-17 02:26:34 -0800 |
commit | ccc91324a1b44d345ab4f814eb2ff453c7e98f9e (patch) | |
tree | 24ac07d2a014a5f6b8dcc685fb76afea1048485d /net/ipv6 | |
parent | e35bedf369b17120dbd7d554bee45407a3825267 (diff) | |
download | op-kernel-dev-ccc91324a1b44d345ab4f814eb2ff453c7e98f9e.zip op-kernel-dev-ccc91324a1b44d345ab4f814eb2ff453c7e98f9e.tar.gz |
[NETFILTER] ip[6]t_policy: Fix compilation warnings
ip[6]t_policy argument conversion slipped when merging with x_tables
Signed-off-by: Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Signed-off-by: Harald Welte <laforge@netfilter.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/ip6t_policy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/netfilter/ip6t_policy.c b/net/ipv6/netfilter/ip6t_policy.c index 13fedad..afe1cc4 100644 --- a/net/ipv6/netfilter/ip6t_policy.c +++ b/net/ipv6/netfilter/ip6t_policy.c @@ -118,7 +118,7 @@ static int match(const struct sk_buff *skb, return ret; } -static int checkentry(const char *tablename, const struct ip6t_ip6 *ip, +static int checkentry(const char *tablename, const void *ip_void, void *matchinfo, unsigned int matchsize, unsigned int hook_mask) { |