aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tcp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-07-16 00:04:21 +0000
committerGuy Harris <guy@alum.mit.edu>2003-07-16 00:04:21 +0000
commit836b7ccb6b3f0837209043a8aa285c296d3a7e21 (patch)
tree2d4aba5876dc56632d5fe9b1ebfd0c2f90a286a7 /packet-tcp.c
parentd4e29bafd6de463575b387d3573d5a55511b94f1 (diff)
Clean out the correct hash table.
svn path=/trunk/; revision=8024
Diffstat (limited to 'packet-tcp.c')
-rw-r--r--packet-tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-tcp.c b/packet-tcp.c
index 1fb096f8bc..5e6f8c07f2 100644
--- a/packet-tcp.c
+++ b/packet-tcp.c
@@ -1,7 +1,7 @@
/* packet-tcp.c
* Routines for TCP packet disassembly
*
- * $Id: packet-tcp.c,v 1.198 2003/07/11 09:30:49 guy Exp $
+ * $Id: packet-tcp.c,v 1.199 2003/07/16 00:04:21 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1012,7 +1012,7 @@ tcp_analyze_seq_init(void)
tcp_rel_seq_table = NULL;
}
if( tcp_pdu_tracking_table ){
- g_hash_table_foreach_remove(tcp_rel_seq_table,
+ g_hash_table_foreach_remove(tcp_pdu_tracking_table,
free_all_acked, NULL);
g_hash_table_destroy(tcp_pdu_tracking_table);
tcp_pdu_tracking_table = NULL;