aboutsummaryrefslogtreecommitdiffstats
path: root/summary.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-19 01:17:24 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-19 01:17:24 +0000
commitc83734aee5a3cbef914068de398d32b7d61bf64b (patch)
treee7ca1bbae435f05ab942e776bf3bdd99a6c3eb42 /summary.c
parentafa7adb6242ee35eb54c20c54daa110106380341 (diff)
Have "f_datalen" keep track of the number of bytes of uncompressed file
data, so that "f_len" still keeps the size of the underlying file (which is necessary in order to make the progress bar when files are being read work correctly). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15415 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 e9df777805..511cf47f18 100644
--- a/summary.c
+++ b/summary.c
@@ -106,7 +106,7 @@ summary_fill_in(capture_file *cf, summary_tally *st)
}
st->filename = cf->filename;
- st->file_length = cf->f_len;
+ st->file_length = cf->f_datalen;
st->encap_type = cf->cd_t;
st->has_snap = cf->has_snap;
st->snap = cf->snap;