diff options
author | Gerald Combs <gerald@wireshark.org> | 2008-10-14 22:55:16 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2008-10-14 22:55:16 +0000 |
commit | c99312dae0587939b3aae92bbb7bd4fc7a009800 (patch) | |
tree | c5bdaf0b2162ccf51c04625eefbe3005e71e3523 /summary.c | |
parent | 0367cd77680b39d2fab6c96910e9144b4f2b828f (diff) | |
download | wireshark-c99312dae0587939b3aae92bbb7bd4fc7a009800.tar.gz wireshark-c99312dae0587939b3aae92bbb7bd4fc7a009800.tar.bz2 wireshark-c99312dae0587939b3aae92bbb7bd4fc7a009800.zip |
Use a more accurate variable name for the wiretap file type. Add the file
encapsulation to the summary display.
svn path=/trunk/; revision=26459
Diffstat (limited to 'summary.c')
-rw-r--r-- | summary.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -120,7 +120,8 @@ summary_fill_in(capture_file *cf, summary_tally *st) st->filename = cf->filename; st->file_length = cf->f_datalen; - st->encap_type = cf->cd_t; + st->file_type = cf->cd_t; + st->encap_type = cf->lnk_t; st->has_snap = cf->has_snap; st->snap = cf->snap; st->elapsed_time = nstime_to_sec(&cf->elapsed_time); |