diff options
author | Joe Perches <joe@perches.com> | 2007-12-16 16:45:43 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:58:15 -0500 |
commit | f97c1e0c6ebdb606c97b6cb5e837c6110ac5a961 (patch) | |
tree | 2af3da0114614a127099f9ab2ef706f676faa376 /net/ipv4/raw.c | |
parent | 21cf2253ebcf070bc307e0b56d696a2519c75cb4 (diff) |
[IPV4] net/ipv4: Use ipv4_is_<type>
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/raw.c')
-rw-r--r-- | net/ipv4/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c index 2ff8214a530b..5aec5a5e5f16 100644 --- a/net/ipv4/raw.c +++ b/net/ipv4/raw.c | |||
@@ -530,7 +530,7 @@ static int raw_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, | |||
530 | if (msg->msg_flags & MSG_DONTROUTE) | 530 | if (msg->msg_flags & MSG_DONTROUTE) |
531 | tos |= RTO_ONLINK; | 531 | tos |= RTO_ONLINK; |
532 | 532 | ||
533 | if (MULTICAST(daddr)) { | 533 | if (ipv4_is_multicast(daddr)) { |
534 | if (!ipc.oif) | 534 | if (!ipc.oif) |
535 | ipc.oif = inet->mc_index; | 535 | ipc.oif = inet->mc_index; |
536 | if (!saddr) | 536 | if (!saddr) |