]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ipv4: Remove rt->rt_dst reference from ip_forward_options().
authorDavid S. Miller <davem@davemloft.net>
Fri, 13 May 2011 21:31:02 +0000 (17:31 -0400)
committerDavid S. Miller <davem@davemloft.net>
Fri, 13 May 2011 21:31:02 +0000 (17:31 -0400)
At this point iph->daddr equals what rt->rt_dst would hold.

Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/ip_options.c

index 89268baabc87bb6b48368dd3911c2bb594fa5272..c3118e1cd3bb502c293748e40b2c3ccc648c8b94 100644 (file)
@@ -567,7 +567,7 @@ void ip_forward_options(struct sk_buff *skb)
                     ) {
                        if (srrptr + 3 > srrspace)
                                break;
-                       if (memcmp(&rt->rt_dst, &optptr[srrptr-1], 4) == 0)
+                       if (memcmp(&ip_hdr(skb)->daddr, &optptr[srrptr-1], 4) == 0)
                                break;
                }
                if (srrptr + 3 <= srrspace) {