]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[DCCP]: Remove unneeded pointer newdp from dccp_v4_request_recv_sock()
authorMicah Gruber <micah.gruber@gmail.com>
Wed, 5 Sep 2007 14:58:14 +0000 (07:58 -0700)
committerDavid S. Miller <davem@sunset.davemloft.net>
Wed, 10 Oct 2007 23:48:59 +0000 (16:48 -0700)
This trivial patch removes the unneeded pointer newdp, which is never used.

Signed-off-by: Micah Gruber <micah.gruber@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/dccp/ipv4.c

index 718f2fa923a10621b5ab3f107653a27125e0db15..2c628281526473ef0b268c73b85b0a40b227b415 100644 (file)
@@ -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;