summaryrefslogtreecommitdiff
path: root/net/ipv4/igmp.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2007-03-16 20:19:57 (GMT)
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 05:26:18 (GMT)
commitbff9b61ce330df04c6830d823c30c04203543f01 (patch)
tree19525bb3d690a421ebd48efa578736ea1e4ca3e2 /net/ipv4/igmp.c
parent514bca322cb9220308d22691ac1e74038bfabac3 (diff)
downloadlinux-fsl-qoriq-bff9b61ce330df04c6830d823c30c04203543f01.tar.xz
[SK_BUFF]: Use the helpers to get the layer header pointer
Some more cases... Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/igmp.c')
-rw-r--r--net/ipv4/igmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/igmp.c b/net/ipv4/igmp.c
index b0efd27..4695ada 100644
--- a/net/ipv4/igmp.c
+++ b/net/ipv4/igmp.c
@@ -348,7 +348,7 @@ static int igmpv3_sendpack(struct sk_buff *skb)
{
struct iphdr *pip = ip_hdr(skb);
struct igmphdr *pig = igmp_hdr(skb);
- const int iplen = skb->tail - skb->nh.raw;
+ const int iplen = skb->tail - skb_network_header(skb);
const int igmplen = skb->tail - skb_transport_header(skb);
pip->tot_len = htons(iplen);