aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ipv4.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2011-05-03 20:06:41 -0700
committerDavid S. Miller <davem@davemloft.net>2011-05-03 20:06:41 -0700
commitf1390160ddcd64a3cfd48b3280d0a616a31b9520 (patch)
treebc1973eae7b3bdab36f2e47c7f87543344b85a9a /net/dccp/ipv4.c
parentipv4: Renamt struct rtable's rt_tos to rt_key_tos. (diff)
downloadlinux-dev-f1390160ddcd64a3cfd48b3280d0a616a31b9520.tar.xz
linux-dev-f1390160ddcd64a3cfd48b3280d0a616a31b9520.zip
dccp: Use flowi4->saddr in dccp_v4_connect()
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-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 f4254bb4745d..36700a46b245 100644
--- a/net/dccp/ipv4.c
+++ b/net/dccp/ipv4.c
@@ -86,7 +86,7 @@ int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
daddr = fl4.daddr;
if (inet->inet_saddr == 0)
- inet->inet_saddr = rt->rt_src;
+ inet->inet_saddr = fl4.saddr;
inet->inet_rcv_saddr = inet->inet_saddr;
inet->inet_dport = usin->sin_port;