aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-16 19:35:32 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-16 19:35:32 +0000
commita07acc73ace482c18dfb35f63fd9dce30c76ae56 (patch)
treed4031622b7964d5cd24af1d81fa53a6b55dafab1 /file.c
parentc148b9f1186715d09d54b6ad56dc4b96568216f5 (diff)
Reset the tap listeners in "retap_packets()" before rerunning the taps.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9677 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'file.c')
-rw-r--r--file.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/file.c b/file.c
index a9a04c7993..65f3736a0d 100644
--- a/file.c
+++ b/file.c
@@ -1,7 +1,7 @@
/* file.c
* File I/O routines
*
- * $Id: file.c,v 1.341 2004/01/13 22:33:26 guy Exp $
+ * $Id: file.c,v 1.342 2004/01/16 19:35:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -1400,6 +1400,9 @@ retap_packets(capture_file *cf)
{
packet_range_t range;
+ /* Reset the tap listeners. */
+ reset_tap_listeners();
+
/* Iterate through the list of packets, dissecting all packets and
re-running the taps. */
packet_range_init(&range);