aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/netfilter/xt_pkttype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/xt_pkttype.c b/net/netfilter/xt_pkttype.c
index c598bbed8e09..276244902ab5 100644
--- a/net/netfilter/xt_pkttype.c
+++ b/net/netfilter/xt_pkttype.c
@@ -31,7 +31,7 @@ pkttype_mt(const struct sk_buff *skb, const struct net_device *in,
31 const struct xt_pkttype_info *info = matchinfo; 31 const struct xt_pkttype_info *info = matchinfo;
32 32
33 if (skb->pkt_type == PACKET_LOOPBACK) 33 if (skb->pkt_type == PACKET_LOOPBACK)
34 type = MULTICAST(ip_hdr(skb)->daddr) 34 type = ipv4_is_multicast(ip_hdr(skb)->daddr)
35 ? PACKET_MULTICAST 35 ? PACKET_MULTICAST
36 : PACKET_BROADCAST; 36 : PACKET_BROADCAST;
37 else 37 else