summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2010-08-16 18:17:45 +0000
committerAnders Broman <anders.broman@ericsson.com>2010-08-16 18:17:45 +0000
commit46cd4a8507f56cc61d46cca849e7bf8903a9c49d (patch)
treeda049ea1a4163fcbc6cb3ad790573777e642f543 /file.c
parent6ef98db3bb08d5dfb37aed480fb3458ae1ab9d9a (diff)
downloadwireshark-46cd4a8507f56cc61d46cca849e7bf8903a9c49d.tar.gz
From Cal Turney:
1. Restore the functionality of <Ctrl>A and <Ctrl>X to the filter textbox. 2. Assign intuitive shortcuts without consuming any new shortcut letters. 3. Add 'Un-Time Reference All Packets' to the menu. 4. Disallow the marking or ignoring of all packets in the capture. 5. Make the Mark/Ignore/Time Reference-related menu items context sensitive. 6. Add 'ref_time_count' to the capture_file structure 7. Utilize marked/ignored/ref_time_count vars to prevent needless looping thru the entire packet list by exiting the loop when it becomes zero. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5115 svn path=/trunk/; revision=33817
Diffstat (limited to 'file.c')
-rw-r--r--file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/file.c b/file.c
index 194f0e784d..680940a1c9 100644
--- a/file.c
+++ b/file.c
@@ -320,6 +320,7 @@ cf_open(capture_file *cf, const char *fname, gboolean is_tempfile, int *err)
cf->displayed_count = 0;
cf->marked_count = 0;
cf->ignored_count = 0;
+ cf->ref_time_count = 0;
cf->drops_known = FALSE;
cf->drops = 0;
cf->snap = wtap_snapshot_length(cf->wth);