Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 37ef8dd7 authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

[IPV4] net/netfilter: Use ipv4_is_<type>

parent f97c1e0c
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -31,7 +31,7 @@ pkttype_mt(const struct sk_buff *skb, const struct net_device *in,
	const struct xt_pkttype_info *info = matchinfo;
	const struct xt_pkttype_info *info = matchinfo;


	if (skb->pkt_type == PACKET_LOOPBACK)
	if (skb->pkt_type == PACKET_LOOPBACK)
		type = MULTICAST(ip_hdr(skb)->daddr)
		type = ipv4_is_multicast(ip_hdr(skb)->daddr)
			? PACKET_MULTICAST
			? PACKET_MULTICAST
			: PACKET_BROADCAST;
			: PACKET_BROADCAST;
	else
	else