diff options
| author | Wei Yongjun <weiyj@soft.fujitsu.com> | 2006-05-09 18:18:50 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2006-05-09 18:18:50 -0400 |
| commit | 63cbd2fda38f3d1f107c4fd6261e5660be3eccf9 (patch) | |
| tree | 67af128970e072a754949317cb4cc0a51cc404c5 | |
| parent | 3a01c1ef75e1d84752ddef607c389bbde9c2576e (diff) | |
[IPV4]: ip_options_fragment() has no effect on fragmentation
Fix error point to options in ip_options_fragment(). optptr get a
error pointer to the ipv4 header, correct is pointer to ipv4 options.
Signed-off-by: Wei Yongjun <weiyj@soft.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | net/ipv4/ip_options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_options.c b/net/ipv4/ip_options.c index 9bebad07bf2e..cbcae6544622 100644 --- a/net/ipv4/ip_options.c +++ b/net/ipv4/ip_options.c | |||
| @@ -209,7 +209,7 @@ int ip_options_echo(struct ip_options * dopt, struct sk_buff * skb) | |||
| 209 | 209 | ||
| 210 | void ip_options_fragment(struct sk_buff * skb) | 210 | void ip_options_fragment(struct sk_buff * skb) |
| 211 | { | 211 | { |
| 212 | unsigned char * optptr = skb->nh.raw; | 212 | unsigned char * optptr = skb->nh.raw + sizeof(struct iphdr); |
| 213 | struct ip_options * opt = &(IPCB(skb)->opt); | 213 | struct ip_options * opt = &(IPCB(skb)->opt); |
| 214 | int l = opt->optlen; | 214 | int l = opt->optlen; |
| 215 | int optlen; | 215 | int optlen; |
