diff options
Diffstat (limited to 'net/dccp/ipv4.c')
-rw-r--r-- | net/dccp/ipv4.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/dccp/ipv4.c b/net/dccp/ipv4.c index 4f9f5eb478f1..ebc54fef85a5 100644 --- a/net/dccp/ipv4.c +++ b/net/dccp/ipv4.c | |||
@@ -500,8 +500,7 @@ static struct dst_entry* dccp_v4_route_skb(struct net *net, struct sock *sk, | |||
500 | return &rt->dst; | 500 | return &rt->dst; |
501 | } | 501 | } |
502 | 502 | ||
503 | static int dccp_v4_send_response(struct sock *sk, struct request_sock *req, | 503 | static int dccp_v4_send_response(struct sock *sk, struct request_sock *req) |
504 | struct request_values *rv_unused) | ||
505 | { | 504 | { |
506 | int err = -1; | 505 | int err = -1; |
507 | struct sk_buff *skb; | 506 | struct sk_buff *skb; |
@@ -658,7 +657,7 @@ int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb) | |||
658 | dreq->dreq_gss = dreq->dreq_iss; | 657 | dreq->dreq_gss = dreq->dreq_iss; |
659 | dreq->dreq_service = service; | 658 | dreq->dreq_service = service; |
660 | 659 | ||
661 | if (dccp_v4_send_response(sk, req, NULL)) | 660 | if (dccp_v4_send_response(sk, req)) |
662 | goto drop_and_free; | 661 | goto drop_and_free; |
663 | 662 | ||
664 | inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT); | 663 | inet_csk_reqsk_queue_hash_add(sk, req, DCCP_TIMEOUT_INIT); |