Commit ad227425 authored by David S. Miller's avatar David S. Miller

ipv4: Get route daddr from flow key in l2tp_ip_connect().

Now that output route lookups update the flow with
destination address selection, we can fetch it from
fl4->daddr instead of rt->rt_dst
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d4fb3d74
......@@ -343,7 +343,7 @@ static int l2tp_ip_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len
inet->inet_saddr = fl4.saddr;
if (!inet->inet_rcv_saddr)
inet->inet_rcv_saddr = fl4.saddr;
inet->inet_daddr = rt->rt_dst;
inet->inet_daddr = fl4.daddr;
sk->sk_state = TCP_ESTABLISHED;
inet->inet_id = jiffies;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment