aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/pptp.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-05-03 20:41:42 -0700
committerDavid S. Miller <davem@davemloft.net>2011-05-03 20:41:42 -0700
commit28c90da02ed7367fc5714adefce2a961e5bae306 (patch)
tree3ecc06a71f0d44034088d941925f15cb94bff009 /drivers/net/pptp.c
parentipv4: Make caller provide on-stack flow key to ip_route_output_ports(). (diff)
downloadlinux-dev-28c90da02ed7367fc5714adefce2a961e5bae306.tar.xz
linux-dev-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.c4
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);