diff options
author | Joe Perches <joe@perches.com> | 2007-12-16 13:46:15 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 14:58:16 -0800 |
commit | 37ef8dd7f3f2f228336e3779e7cec762d90e1f00 (patch) | |
tree | 238dbff821844635098b4528bde2681bc370fd30 | |
parent | f97c1e0c6ebdb606c97b6cb5e837c6110ac5a961 (diff) |
[IPV4] net/netfilter: Use ipv4_is_<type>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/netfilter/xt_pkttype.c | 2 |
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, 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 |