diff options
Diffstat (limited to 'net/dccp')
-rw-r--r-- | net/dccp/ipv4.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/dccp/ipv4.c b/net/dccp/ipv4.c index 171d363876ee..9a1a76a7dc41 100644 --- a/net/dccp/ipv4.c +++ b/net/dccp/ipv4.c | |||
@@ -608,10 +608,10 @@ static struct sock *dccp_v4_hnd_req(struct sock *sk, struct sk_buff *skb) | |||
608 | if (req != NULL) | 608 | if (req != NULL) |
609 | return dccp_check_req(sk, skb, req, prev); | 609 | return dccp_check_req(sk, skb, req, prev); |
610 | 610 | ||
611 | nsk = __inet_lookup_established(&dccp_hashinfo, | 611 | nsk = inet_lookup_established(&dccp_hashinfo, |
612 | iph->saddr, dh->dccph_sport, | 612 | iph->saddr, dh->dccph_sport, |
613 | iph->daddr, ntohs(dh->dccph_dport), | 613 | iph->daddr, dh->dccph_dport, |
614 | inet_iif(skb)); | 614 | inet_iif(skb)); |
615 | if (nsk != NULL) { | 615 | if (nsk != NULL) { |
616 | if (nsk->sk_state != DCCP_TIME_WAIT) { | 616 | if (nsk->sk_state != DCCP_TIME_WAIT) { |
617 | bh_lock_sock(nsk); | 617 | bh_lock_sock(nsk); |
@@ -925,7 +925,7 @@ static int dccp_v4_rcv(struct sk_buff *skb) | |||
925 | * Look up flow ID in table and get corresponding socket */ | 925 | * Look up flow ID in table and get corresponding socket */ |
926 | sk = __inet_lookup(&dccp_hashinfo, | 926 | sk = __inet_lookup(&dccp_hashinfo, |
927 | skb->nh.iph->saddr, dh->dccph_sport, | 927 | skb->nh.iph->saddr, dh->dccph_sport, |
928 | skb->nh.iph->daddr, ntohs(dh->dccph_dport), | 928 | skb->nh.iph->daddr, dh->dccph_dport, |
929 | inet_iif(skb)); | 929 | inet_iif(skb)); |
930 | 930 | ||
931 | /* | 931 | /* |