aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2010-02-17 23:03:41 +0000
committerGerald Combs <gerald@wireshark.org>2010-02-17 23:03:41 +0000
commitd1222438921ccb0c8257976f3256d824e58e727d (patch)
tree3586475dc9e4ba562b93ba5790e6b03147461def /file.c
parent3e85c03c9d733dd4db20bd3f79b831625d42fe0a (diff)
Another Laura bug: Don't reset the file load time in the status bar when
we apply a display filter. Display the load time as "Load time: M:SS.SSS" instead of "Time: HH:MM:SS.SSS". svn path=/trunk/; revision=31909
Diffstat (limited to 'file.c')
-rw-r--r--file.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/file.c b/file.c
index a463c87508..19384e66f2 100644
--- a/file.c
+++ b/file.c
@@ -792,7 +792,7 @@ cf_continue_tail(capture_file *cf, volatile int to_read, int *err)
#ifdef NEW_PACKET_LIST
new_packet_list_check_end();
- /* Don't freeze/thaw the list when doing live capture */
+ /* Don't freeze/thaw the list when doing live capture */
/*new_packet_list_freeze();*/
#else
packet_list_check_end();
@@ -839,7 +839,7 @@ cf_continue_tail(capture_file *cf, volatile int to_read, int *err)
/* Sleep(100); */
};
#ifdef NEW_PACKET_LIST
- /* Don't freeze/thaw the list when doing live capture */
+ /* Don't freeze/thaw the list when doing live capture */
/*new_packet_list_thaw();*/
#else
packet_list_thaw();
@@ -933,7 +933,7 @@ cf_finish_tail(capture_file *cf, int *err)
#ifdef NEW_PACKET_LIST
new_packet_list_check_end();
- /* Don't freeze/thaw the list when doing live capture */
+ /* Don't freeze/thaw the list when doing live capture */
/*new_packet_list_freeze();*/
#else
packet_list_check_end();
@@ -956,7 +956,7 @@ cf_finish_tail(capture_file *cf, int *err)
}
#ifdef NEW_PACKET_LIST
- /* Don't freeze/thaw the list when doing live capture */
+ /* Don't freeze/thaw the list when doing live capture */
/*new_packet_list_thaw();*/
#else
packet_list_thaw();
@@ -1777,8 +1777,6 @@ rescan_packets(capture_file *cf, const char *action, const char *action_item,
cf->first_displayed = NULL;
cf->last_displayed = NULL;
- reset_elapsed();
-
/* We currently don't display any packets */
cf->displayed_count = 0;