diff options
author | David S. Miller <davem@davemloft.net> | 2011-05-03 20:41:42 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-05-03 20:41:42 -0700 |
commit | 28c90da02ed7367fc5714adefce2a961e5bae306 (patch) | |
tree | 3ecc06a71f0d44034088d941925f15cb94bff009 /drivers/net/pptp.c | |
parent | 31e4543db29fb85496a122b965d6482c8d1a2bfe (diff) | |
download | talos-obmc-linux-28c90da02ed7367fc5714adefce2a961e5bae306.tar.gz talos-obmc-linux-28c90da02ed7367fc5714adefce2a961e5bae306.zip |
pptp: Use flowi4's daddr/saddr in pptp_xmit().
Instead of rt->rt_{src,dst}
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/pptp.c')
-rw-r--r-- | drivers/net/pptp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/pptp.c b/drivers/net/pptp.c index e771e8d27eb7..1286fe212dc4 100644 --- a/drivers/net/pptp.c +++ b/drivers/net/pptp.c @@ -271,8 +271,8 @@ static int pptp_xmit(struct ppp_channel *chan, struct sk_buff *skb) iph->frag_off = 0; iph->protocol = IPPROTO_GRE; iph->tos = 0; - iph->daddr = rt->rt_dst; - iph->saddr = rt->rt_src; + iph->daddr = fl4.daddr; + iph->saddr = fl4.saddr; iph->ttl = ip4_dst_hoplimit(&rt->dst); iph->tot_len = htons(skb->len); |