diff options
author | Jianjun Kong <jianjun@zeuux.org> | 2008-11-03 00:24:34 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-03 00:24:34 -0800 |
commit | 5a5f3a8db9d70c90e9d55b46e02b2d8deb1c2c2e (patch) | |
tree | 051b35d2766bf5285a695b82d527cc3c2d77f435 /net/ipv4/ipip.c | |
parent | d9319100c1ad7d0ed4045ded767684ad25670436 (diff) | |
download | linux-stable-5a5f3a8db9d70c90e9d55b46e02b2d8deb1c2c2e.tar.gz linux-stable-5a5f3a8db9d70c90e9d55b46e02b2d8deb1c2c2e.tar.bz2 linux-stable-5a5f3a8db9d70c90e9d55b46e02b2d8deb1c2c2e.zip |
net: clean up net/ipv4/ipip.c raw.c tcp.c tcp_minisocks.c tcp_yeah.c xfrm4_policy.c
Signed-off-by: Jianjun Kong <jianjun@zeuux.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ipip.c')
-rw-r--r-- | net/ipv4/ipip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipip.c b/net/ipv4/ipip.c index 29609d29df76..b3c3d7b0d116 100644 --- a/net/ipv4/ipip.c +++ b/net/ipv4/ipip.c @@ -281,7 +281,7 @@ static int ipip_err(struct sk_buff *skb, u32 info) 8 bytes of packet payload. It means, that precise relaying of ICMP in the real Internet is absolutely infeasible. */ - struct iphdr *iph = (struct iphdr*)skb->data; + struct iphdr *iph = (struct iphdr *)skb->data; const int type = icmp_hdr(skb)->type; const int code = icmp_hdr(skb)->code; struct ip_tunnel *t; |