Skip to content

Commit

Permalink
ipv4: Get route daddr from flow key in l2tp_ip_connect().
Browse files Browse the repository at this point in the history
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: David S. Miller <[email protected]>
  • Loading branch information
davem330 committed Apr 29, 2011
1 parent d4fb3d7 commit ad22742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/l2tp/l2tp_ip.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit ad22742

Please sign in to comment.