Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=239254fedcbc6ff79bcf5696fe94723f7a5d0782
Commit:     239254fedcbc6ff79bcf5696fe94723f7a5d0782
Parent:     9c70220b73908f64792422a2c39c593c4792f2c5
Author:     David S. Miller <[EMAIL PROTECTED]>
AuthorDate: Thu Apr 19 19:55:44 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Wed Apr 25 22:25:32 2007 -0700

    [IPV4] xfrm4_mode_beet: Use skb_transport_header().
    
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 net/ipv4/xfrm4_mode_beet.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/net/ipv4/xfrm4_mode_beet.c b/net/ipv4/xfrm4_mode_beet.c
index 591f0f1..74859df 100644
--- a/net/ipv4/xfrm4_mode_beet.c
+++ b/net/ipv4/xfrm4_mode_beet.c
@@ -100,7 +100,7 @@ static int xfrm4_beet_input(struct xfrm_state *x, struct 
sk_buff *skb)
        skb_set_network_header(skb, phlen - sizeof(*iph));
        memmove(skb_network_header(skb), iph, sizeof(*iph));
        skb_set_transport_header(skb, phlen + optlen);
-       skb->data = skb->h.raw;
+       skb->data = skb_transport_header(skb);
 
        iph = ip_hdr(skb);
        iph->ihl = (sizeof(*iph) + optlen) / 4;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to