use the same packet range things for "Print" dialog, as already implemented

in the "Save As" dialog and some other minor changes

svn path=/trunk/; revision=9612
This commit is contained in:
Ulf Lamping 2004-01-09 19:02:18 +00:00
parent 5bff5db487
commit ba776f0e0f
1 changed files with 5 additions and 2 deletions

View File

@ -1,6 +1,6 @@
/* tethereal.c
*
* $Id: tethereal.c,v 1.214 2004/01/05 19:31:44 ulfl Exp $
* $Id: tethereal.c,v 1.215 2004/01/09 19:02:18 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -2565,7 +2565,10 @@ wtap_dispatch_cb_print(guchar *user, const struct wtap_pkthdr *phdr,
print_args.print_summary = !verbose;
print_args.print_hex = print_hex;
print_args.print_dissections = print_dissections_expanded;
print_args.print_range = print_range_all_captured;
/* init the packet range */
packet_range_init(&print_args.range);
if (verbose) {
/* Print the information in the protocol tree. */
proto_tree_print(&print_args, edt, stdout);