Skip to content

Commit

Permalink
[IPV4] net/netfilter: Use ipv4_is_<type>
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Joe Perches authored and David S. Miller committed Jan 28, 2008
1 parent f97c1e0 commit 37ef8dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/netfilter/xt_pkttype.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pkttype_mt(const struct sk_buff *skb, const struct net_device *in,
const struct xt_pkttype_info *info = matchinfo;

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

0 comments on commit 37ef8dd

Please sign in to comment.