diff options
Diffstat (limited to 'net/ipv4/ip_options.c')
-rw-r--r-- | net/ipv4/ip_options.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv4/ip_options.c b/net/ipv4/ip_options.c index df93a9c2efda..7e94bf850a07 100644 --- a/net/ipv4/ip_options.c +++ b/net/ipv4/ip_options.c | |||
@@ -267,8 +267,7 @@ int ip_options_compile(struct ip_options * opt, struct sk_buff * skb) | |||
267 | optptr = iph + sizeof(struct iphdr); | 267 | optptr = iph + sizeof(struct iphdr); |
268 | opt->is_data = 0; | 268 | opt->is_data = 0; |
269 | } else { | 269 | } else { |
270 | optptr = opt->is_data ? opt->__data : | 270 | optptr = opt->__data; |
271 | (unsigned char *)&(ip_hdr(skb)[1]); | ||
272 | iph = optptr - sizeof(struct iphdr); | 271 | iph = optptr - sizeof(struct iphdr); |
273 | } | 272 | } |
274 | 273 | ||