summaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorLinus Torvalds2006-03-27 18:47:29 +0200
committerLinus Torvalds2006-03-27 18:47:29 +0200
commitfdccffc6b711d1bfcd1e1b569537686dcad423e2 (patch)
tree51a4cdfad5ed6ea0fcec697f0f8e53a1d33ef326 /net/core
parentMerge branch 'for-linus' of git://brick.kernel.dk/data/git/linux-2.6-block (diff)
parent[NET]: drop duplicate assignment in request_sock (diff)
downloadkernel-qcow2-linux-fdccffc6b711d1bfcd1e1b569537686dcad423e2.tar.gz
kernel-qcow2-linux-fdccffc6b711d1bfcd1e1b569537686dcad423e2.tar.xz
kernel-qcow2-linux-fdccffc6b711d1bfcd1e1b569537686dcad423e2.zip
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6: [NET]: drop duplicate assignment in request_sock [IPSEC]: Fix tunnel error handling in ipcomp6
Diffstat (limited to 'net/core')
-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);