diff options
author | Norbert Kiesel <nkiesel@tbdnetworks.com> | 2006-03-26 17:39:55 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-26 17:39:55 -0800 |
commit | 3eb4801d7bde42b82f05137392a1ee0ece090bad (patch) | |
tree | b2c77a296de517b8b1c551fd81b1795a9d1204a2 /include/net | |
parent | 6abaaaae6d5ed52422c8caf65f3cdbb95579bb58 (diff) |
[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 'include/net')
-rw-r--r-- | include/net/request_sock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/request_sock.h b/include/net/request_sock.h index 11641c9384f..c5d7f920c35 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; } |