aboutsummaryrefslogtreecommitdiffstats
path: root/net/dccp/ipv4.c
diff options
context:
space:
mode:
authorMicah Gruber <micah.gruber@gmail.com>2007-09-05 07:58:14 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-10-10 16:48:59 -0700
commitc7261872256f9172eb26438b96725b6f2115e955 (patch)
tree17988b691ca95e81a6c4f1da83f9759a654c548a /net/dccp/ipv4.c
parent[IPV6]: Remove unneeded pointer iph from ipcomp6_input() in net/ipv6/ipcomp6.c (diff)
downloadlinux-dev-c7261872256f9172eb26438b96725b6f2115e955.tar.xz
linux-dev-c7261872256f9172eb26438b96725b6f2115e955.zip
[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 <micah.gruber@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/dccp/ipv4.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/net/dccp/ipv4.c b/net/dccp/ipv4.c
index 718f2fa923a1..2c6282815264 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;