Skip to content

Commit

Permalink
ipv4: Get route daddr from flow key in dccp_v4_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 4490166 commit 91ab0b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/dccp/ipv4.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 91ab0b6

Please sign in to comment.