aboutsummaryrefslogtreecommitdiffstats
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
parent31e4543db29fb85496a122b965d6482c8d1a2bfe (diff)
downloadkernel_samsung_smdk4412-28c90da02ed7367fc5714adefce2a961e5bae306.zip
kernel_samsung_smdk4412-28c90da02ed7367fc5714adefce2a961e5bae306.tar.gz
kernel_samsung_smdk4412-28c90da02ed7367fc5714adefce2a961e5bae306.tar.bz2
pptp: Use flowi4's daddr/saddr in pptp_xmit().
Instead of rt->rt_{src,dst} Signed-off-by: David S. Miller <davem@davemloft.net>
-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 e771e8d..1286fe2 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);