aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ipv4.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-04-28 23:49:30 -0700
committerDavid S. Miller <davem@davemloft.net>2011-04-28 23:49:30 -0700
commit91ab0b60a12833b4715b838474f23496af8de30c (patch)
treeec72b681f5e6e078c4640ed0e5e6392be23b68f2 /net/dccp/ipv4.c
parentipv4: Fetch route saddr from flow key in l2tp_ip_connect(). (diff)
downloadlinux-dev-91ab0b60a12833b4715b838474f23496af8de30c.tar.xz
linux-dev-91ab0b60a12833b4715b838474f23496af8de30c.zip
ipv4: Get route daddr from flow key in dccp_v4_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: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ipv4.c')
-rw-r--r--net/dccp/ipv4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dccp/ipv4.c b/net/dccp/ipv4.c
index cbbcc6c036e0..f4254bb4745d 100644
--- a/net/dccp/ipv4.c
+++ b/net/dccp/ipv4.c
@@ -83,7 +83,7 @@ int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
}
if (inet_opt == NULL || !inet_opt->opt.srr)
- daddr = rt->rt_dst;
+ daddr = fl4.daddr;
if (inet->inet_saddr == 0)
inet->inet_saddr = rt->rt_src;