diff options
Diffstat (limited to 'net/ipv6/ndisc.c')
| -rw-r--r-- | net/ipv6/ndisc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c index da0a4d2adc6..3f7c12b70a2 100644 --- a/net/ipv6/ndisc.c +++ b/net/ipv6/ndisc.c @@ -536,7 +536,7 @@ void ndisc_send_skb(struct sk_buff *skb,  	idev = in6_dev_get(dst->dev);  	IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len); -	err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, skb, NULL, dst->dev, +	err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL, dst->dev,  		      dst_output);  	if (!err) {  		ICMP6MSGOUT_INC_STATS(net, idev, type); @@ -1618,7 +1618,7 @@ void ndisc_send_redirect(struct sk_buff *skb, struct neighbour *neigh,  	skb_dst_set(buff, dst);  	idev = in6_dev_get(dst->dev);  	IP6_UPD_PO_STATS(net, idev, IPSTATS_MIB_OUT, skb->len); -	err = NF_HOOK(PF_INET6, NF_INET_LOCAL_OUT, buff, NULL, dst->dev, +	err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, buff, NULL, dst->dev,  		      dst_output);  	if (!err) {  		ICMP6MSGOUT_INC_STATS(net, idev, NDISC_REDIRECT);  |