diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2007-03-10 16:21:45 -0300 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-25 22:24:45 -0700 |
commit | 57effc70a5be9f7804e9a99964eb7265367effca (patch) | |
tree | 899aba12491095e6eb55291f5032cccab0f9b609 /net | |
parent | a16aeb36239ce612699ed64a75a03c88cbc657e8 (diff) | |
download | linux-3.10-57effc70a5be9f7804e9a99964eb7265367effca.tar.gz linux-3.10-57effc70a5be9f7804e9a99964eb7265367effca.tar.bz2 linux-3.10-57effc70a5be9f7804e9a99964eb7265367effca.zip |
[IPV6]: Use skb->nh.ipv6h instead of casting skb->nh.raw
nh.ipv6h is there exactly for this reason! Use it while it exists ;-)
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/exthdrs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/exthdrs.c b/net/ipv6/exthdrs.c index bcc4820baa7..fce5abde554 100644 --- a/net/ipv6/exthdrs.c +++ b/net/ipv6/exthdrs.c @@ -200,7 +200,7 @@ static int ipv6_dest_hao(struct sk_buff **skbp, int optoff) struct sk_buff *skb = *skbp; struct ipv6_destopt_hao *hao; struct inet6_skb_parm *opt = IP6CB(skb); - struct ipv6hdr *ipv6h = (struct ipv6hdr *)skb->nh.raw; + struct ipv6hdr *ipv6h = skb->nh.ipv6h; struct in6_addr tmp_addr; int ret; |