aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavem <davem>2002-01-15 08:49:21 +0000
committerdavem <davem>2002-01-15 08:49:21 +0000
commit1e812cd6f27d0db6dbef28a663f06569e8506345 (patch)
treec19cddfdc5c84cb0bbea9ad0af6da169bfcc6716
parenta856ac769794debfdcaa6639a4fa620e254298da (diff)
downloadnetdev-vger-cvs-1e812cd6f27d0db6dbef28a663f06569e8506345.tar.gz
Kill spurious assignment. From acme.
-rw-r--r--net/ipv4/tcp_ipv4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c
index 83bd0e99b..acd4aacb9 100644
--- a/net/ipv4/tcp_ipv4.c
+++ b/net/ipv4/tcp_ipv4.c
@@ -5,7 +5,7 @@
*
* Implementation of the Transmission Control Protocol(TCP).
*
- * Version: $Id: tcp_ipv4.c,v 1.237 2001-12-05 08:54:10 davem Exp $
+ * Version: $Id: tcp_ipv4.c,v 1.238 2002-01-15 08:49:21 davem Exp $
*
* IPv4 specific functions
*
@@ -2064,7 +2064,7 @@ int tcp_get_info(char *buffer, char **start, off_t offset, int length)
/* First, walk listening socket table. */
tcp_listen_lock();
for(i = 0; i < TCP_LHTABLE_SIZE; i++) {
- struct sock *sk = tcp_listening_hash[i];
+ struct sock *sk;
struct tcp_listen_opt *lopt;
int k;