diff options
author | Nikolay Aleksandrov <nikolay@cumulusnetworks.com> | 2016-10-31 13:21:04 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-10-31 16:18:30 -0400 |
commit | 56245cae19f5ccb371fa63b09bb6b9ce7c0f1266 (patch) | |
tree | 20cd272138abfdd4250c4c6262462dbba3b35926 /net/ipv4/ipmr.c | |
parent | 20bb6ce9879e19eee7539329eaa2408d12b00306 (diff) |
net: pim: add all RFC7761 message types
Signed-off-by: Nikolay Aleksandrov <nikolay@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ipmr.c')
-rw-r--r-- | net/ipv4/ipmr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipmr.c b/net/ipv4/ipmr.c index 5f006e13de56..51d71a70fbbe 100644 --- a/net/ipv4/ipmr.c +++ b/net/ipv4/ipmr.c @@ -2053,7 +2053,7 @@ static int pim_rcv(struct sk_buff *skb) goto drop; pim = (struct pimreghdr *)skb_transport_header(skb); - if (pim->type != ((PIM_VERSION << 4) | (PIM_REGISTER)) || + if (pim->type != ((PIM_VERSION << 4) | (PIM_TYPE_REGISTER)) || (pim->flags & PIM_NULL_REGISTER) || (ip_compute_csum((void *)pim, sizeof(*pim)) != 0 && csum_fold(skb_checksum(skb, 0, skb->len, 0)))) |