diff options
Diffstat (limited to 'net/ipv4/arp.c')
-rw-r--r-- | net/ipv4/arp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/arp.c b/net/ipv4/arp.c index 1102fb3d8018..fdf12d1c350e 100644 --- a/net/ipv4/arp.c +++ b/net/ipv4/arp.c | |||
@@ -777,7 +777,7 @@ static int arp_process(struct sk_buff *skb) | |||
777 | * Check for bad requests for 127.x.x.x and requests for multicast | 777 | * Check for bad requests for 127.x.x.x and requests for multicast |
778 | * addresses. If this is one such, delete it. | 778 | * addresses. If this is one such, delete it. |
779 | */ | 779 | */ |
780 | if (LOOPBACK(tip) || MULTICAST(tip)) | 780 | if (ipv4_is_loopback(tip) || ipv4_is_multicast(tip)) |
781 | goto out; | 781 | goto out; |
782 | 782 | ||
783 | /* | 783 | /* |