aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/ethereal.pod.template5
-rw-r--r--gtk/proto_hier_stats_dlg.c8
2 files changed, 7 insertions, 6 deletions
diff --git a/doc/ethereal.pod.template b/doc/ethereal.pod.template
index db30dbca03..0cf5a2d9ea 100644
--- a/doc/ethereal.pod.template
+++ b/doc/ethereal.pod.template
@@ -409,9 +409,10 @@ organizes the protocols in the same hierarchy in which
they were found in the trace. Besides counting the packets
in which the protocol exists, a count is also made
for packets in which the protocol is the last protocol in
-the stack. These "Last Protocol" counts show you how many packets
+the stack. These last-protocol counts show you how many packets
(and the byte count associated with those packets) B<ended> in a particular
-protocol.
+protocol. In the table, they are listed under "End Packets" and
+"End Bytes".
=head2 WINDOWS
diff --git a/gtk/proto_hier_stats_dlg.c b/gtk/proto_hier_stats_dlg.c
index fced1484a7..4f9326e139 100644
--- a/gtk/proto_hier_stats_dlg.c
+++ b/gtk/proto_hier_stats_dlg.c
@@ -1,6 +1,6 @@
/* proto_hier_stats_dlg.c
*
- * $Id: proto_hier_stats_dlg.c,v 1.3 2001/03/26 03:02:57 gram Exp $
+ * $Id: proto_hier_stats_dlg.c,v 1.4 2001/03/29 04:21:35 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -119,11 +119,11 @@ create_tree(GtkWidget *container, ph_stats_t *ps)
int i, height;
gchar *column_titles[NUM_STAT_COLUMNS] = {
"Protocol",
- "Percentage Packets",
+ "% Packets",
"Packets",
"Bytes",
- "Last-Protocol Packets",
- "Last-Protocol Bytes",
+ "End Packets",
+ "End Bytes",
};
/* Scrolled Window */