aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2006-03-27 08:47:29 -0800
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-27 08:47:29 -0800
commitfdccffc6b711d1bfcd1e1b569537686dcad423e2 (patch)
tree51a4cdfad5ed6ea0fcec697f0f8e53a1d33ef326 /include
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)
downloadlinux-dev-fdccffc6b711d1bfcd1e1b569537686dcad423e2.tar.xz
linux-dev-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 'include')
-rw-r--r--include/net/request_sock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/request_sock.h b/include/net/request_sock.h
index 11641c9384f7..c5d7f920c352 100644
--- a/include/net/request_sock.h
+++ b/include/net/request_sock.h
@@ -145,7 +145,7 @@ static inline struct request_sock *
{
struct request_sock *req = queue->rskq_accept_head;
- queue->rskq_accept_head = queue->rskq_accept_head = NULL;
+ queue->rskq_accept_head = NULL;
return req;
}