diff options
Diffstat (limited to 'net/ipv4/ip_input.c')
-rw-r--r-- | net/ipv4/ip_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/ip_input.c b/net/ipv4/ip_input.c index 168c871fcd79..5b8a7603e606 100644 --- a/net/ipv4/ip_input.c +++ b/net/ipv4/ip_input.c | |||
@@ -268,7 +268,7 @@ int ip_local_deliver(struct sk_buff *skb) | |||
268 | return 0; | 268 | return 0; |
269 | } | 269 | } |
270 | 270 | ||
271 | return NF_HOOK(PF_INET, NF_IP_LOCAL_IN, skb, skb->dev, NULL, | 271 | return NF_HOOK(PF_INET, NF_INET_LOCAL_IN, skb, skb->dev, NULL, |
272 | ip_local_deliver_finish); | 272 | ip_local_deliver_finish); |
273 | } | 273 | } |
274 | 274 | ||
@@ -442,7 +442,7 @@ int ip_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, | |||
442 | /* Remove any debris in the socket control block */ | 442 | /* Remove any debris in the socket control block */ |
443 | memset(IPCB(skb), 0, sizeof(struct inet_skb_parm)); | 443 | memset(IPCB(skb), 0, sizeof(struct inet_skb_parm)); |
444 | 444 | ||
445 | return NF_HOOK(PF_INET, NF_IP_PRE_ROUTING, skb, dev, NULL, | 445 | return NF_HOOK(PF_INET, NF_INET_PRE_ROUTING, skb, dev, NULL, |
446 | ip_rcv_finish); | 446 | ip_rcv_finish); |
447 | 447 | ||
448 | inhdr_error: | 448 | inhdr_error: |