aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-04-29 02:49:30 -0400
committerDavid S. Miller <davem@davemloft.net>2011-04-29 02:49:30 -0400
commit91ab0b60a12833b4715b838474f23496af8de30c (patch)
treeec72b681f5e6e078c4640ed0e5e6392be23b68f2 /net
parent44901666a1a736b3f43eac7894b07183f127e9a9 (diff)
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')
-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 cbbcc6c036e..f4254bb4745 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)
83 } 83 }
84 84
85 if (inet_opt == NULL || !inet_opt->opt.srr) 85 if (inet_opt == NULL || !inet_opt->opt.srr)
86 daddr = rt->rt_dst; 86 daddr = fl4.daddr;
87 87
88 if (inet->inet_saddr == 0) 88 if (inet->inet_saddr == 0)
89 inet->inet_saddr = rt->rt_src; 89 inet->inet_saddr = rt->rt_src;