aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/request_sock.c
diff options
context:
space:
mode:
authorNorbert Kiesel <nkiesel@tbdnetworks.com>2006-03-26 17:39:55 -0800
committerDavid S. Miller <davem@davemloft.net>2006-03-26 17:39:55 -0800
commit3eb4801d7bde42b82f05137392a1ee0ece090bad (patch)
treeb2c77a296de517b8b1c551fd81b1795a9d1204a2 /net/core/request_sock.c
parent[IPSEC]: Fix tunnel error handling in ipcomp6 (diff)
downloadlinux-dev-3eb4801d7bde42b82f05137392a1ee0ece090bad.tar.xz
linux-dev-3eb4801d7bde42b82f05137392a1ee0ece090bad.zip
[NET]: drop duplicate assignment in request_sock
Just noticed that request_sock.[ch] contain a useless assignment of rskq_accept_head to itself. I assume this is a typo and the 2nd one was supposed to be _tail. However, setting _tail to NULL is not needed, so the patch below just drops the 2nd assignment. Signed-off-By: Norbert Kiesel <nkiesel@tbdnetworks.com> Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/request_sock.c')
-rw-r--r--net/core/request_sock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/request_sock.c b/net/core/request_sock.c
index 98f0fc923f91..1e44eda1fda9 100644
--- a/net/core/request_sock.c
+++ b/net/core/request_sock.c
@@ -51,7 +51,7 @@ int reqsk_queue_alloc(struct request_sock_queue *queue,
get_random_bytes(&lopt->hash_rnd, sizeof(lopt->hash_rnd));
rwlock_init(&queue->syn_wait_lock);
- queue->rskq_accept_head = queue->rskq_accept_head = NULL;
+ queue->rskq_accept_head = NULL;
lopt->nr_table_entries = nr_table_entries;
write_lock_bh(&queue->syn_wait_lock);