aboutsummaryrefslogtreecommitdiffstats
path: root/summary.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-04-13 20:39:38 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-04-13 20:39:38 +0000
commitb218a8f5504f8bbc83f8e0ef9649cb7df9e109af (patch)
tree8a453940e94dc4accd5f61af0f2b789b4e0447a0 /summary.c
parent6a1c248625b669b42b9cedb732f5d39938cd0b74 (diff)
Consolidate flags in struct frame_data, and add "visited" flag. Use
it in SOCKS dissector. (Okay, how many times am I going to modify packet.h today, forcing you to re-compile everything? :-) svn path=/trunk/; revision=1850
Diffstat (limited to 'summary.c')
-rw-r--r--summary.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/summary.c b/summary.c
index 4a1951e215..89e20d08fa 100644
--- a/summary.c
+++ b/summary.c
@@ -1,7 +1,7 @@
/* summary.c
* Routines for capture file summary info
*
- * $Id: summary.c,v 1.16 1999/12/29 21:30:28 guy Exp $
+ * $Id: summary.c,v 1.17 2000/04/13 20:39:18 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -53,7 +53,7 @@ tally_frame_data(frame_data *cur_frame, summary_tally *sum_tally)
sum_tally->stop_time = cur_time;
}
sum_tally->bytes += cur_frame->pkt_len;
- if (cur_frame->passed_dfilter)
+ if (cur_frame->flags.passed_dfilter)
sum_tally->filtered_count++;
}