aboutsummaryrefslogtreecommitdiffstats
path: root/summary.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2007-11-28 01:04:11 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2007-11-28 01:04:11 +0000
commitb218a229c9802c1878b8166ac935f7c23ddae9e8 (patch)
tree0b3b27b307faa56b6a80b0b3b5ab3f8218f5b834 /summary.c
parent1e4e437a39d625c79436e60a8a30b581fb1e0e7a (diff)
Fixed a bug when adjusting summary marked start time.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23632 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'summary.c')
-rw-r--r--summary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/summary.c b/summary.c
index 528bbfc556..ffdccd22de 100644
--- a/summary.c
+++ b/summary.c
@@ -58,7 +58,7 @@ tally_frame_data(frame_data *cur_frame, summary_tally *sum_tally)
sum_tally->filtered_stop = cur_time;
} else {
if (cur_time < sum_tally->filtered_start) {
- sum_tally->start_time = cur_time;
+ sum_tally->filtered_start = cur_time;
}
if (cur_time > sum_tally->filtered_stop) {
sum_tally->filtered_stop = cur_time;