From: Micah Gruber Date: Wed, 5 Sep 2007 14:58:14 +0000 (-0700) Subject: [DCCP]: Remove unneeded pointer newdp from dccp_v4_request_recv_sock() X-Git-Tag: v3.12-rc1~26468^2~712 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c7261872256f9172eb26438b96725b6f2115e955;p=kernel%2Fkernel-generic.git [DCCP]: Remove unneeded pointer newdp from dccp_v4_request_recv_sock() This trivial patch removes the unneeded pointer newdp, which is never used. Signed-off-by: Micah Gruber Signed-off-by: David S. Miller --- diff --git a/net/dccp/ipv4.c b/net/dccp/ipv4.c index 718f2fa..2c62828 100644 --- a/net/dccp/ipv4.c +++ b/net/dccp/ipv4.c @@ -381,7 +381,6 @@ struct sock *dccp_v4_request_recv_sock(struct sock *sk, struct sk_buff *skb, { struct inet_request_sock *ireq; struct inet_sock *newinet; - struct dccp_sock *newdp; struct sock *newsk; if (sk_acceptq_is_full(sk)) @@ -396,7 +395,6 @@ struct sock *dccp_v4_request_recv_sock(struct sock *sk, struct sk_buff *skb, sk_setup_caps(newsk, dst); - newdp = dccp_sk(newsk); newinet = inet_sk(newsk); ireq = inet_rsk(req); newinet->daddr = ireq->rmt_addr;