summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2008-04-14 01:11:07 +0000
committerUlf Lamping <ulf.lamping@web.de>2008-04-14 01:11:07 +0000
commitb3d55eb0951104c13d20090e5bec133c649ca34e (patch)
treeb7eee87b431365d064c2b1c35ae7ea23e1b8197e /plugins
parent3e2fcbfe6c6e014d483ff04143582602dbeb03a7 (diff)
downloadwireshark-b3d55eb0951104c13d20090e5bec133c649ca34e.tar.gz
clarify the stats_tree menu items
svn path=/trunk/; revision=25009
Diffstat (limited to 'plugins')
-rw-r--r--plugins/stats_tree/pinfo_stats_tree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/stats_tree/pinfo_stats_tree.c b/plugins/stats_tree/pinfo_stats_tree.c
index 4706c77609..31b33a7855 100644
--- a/plugins/stats_tree/pinfo_stats_tree.c
+++ b/plugins/stats_tree/pinfo_stats_tree.c
@@ -51,7 +51,7 @@ static const gchar* port_type_to_str (port_type type) {
/* ip host stats_tree -- basic test */
static int st_node_ip = -1;
-static const gchar* st_str_ip = "IP address";
+static const gchar* st_str_ip = "IP Addresses";
static void ip_hosts_stats_tree_init(stats_tree* st) {
st_node_ip = stats_tree_create_node(st, st_str_ip, 0, TRUE);
@@ -73,7 +73,7 @@ static int ip_hosts_stats_tree_packet(stats_tree *st , packet_info *pinfo, epan
/* packet type stats_tree -- test pivot node */
static int st_node_ptype = -1;
-static const gchar* st_str_ptype = "Port Type";
+static const gchar* st_str_ptype = "IP Protocol Types";
static void ptype_stats_tree_init(stats_tree* st) {
st_node_ptype = stats_tree_create_pivot(st, st_str_ptype, 0);
@@ -91,7 +91,7 @@ static int ptype_stats_tree_packet(stats_tree* st, packet_info* pinfo, epan_diss
/* packet length stats_tree -- test range node */
static int st_node_plen = -1;
-static const gchar* st_str_plen = "Packet Length";
+static const gchar* st_str_plen = "Packet Lengths";
static void plen_stats_tree_init(stats_tree* st) {
st_node_plen = stats_tree_create_range_node(st, st_str_plen, 0, "0-19","20-39","40-79","80-159","160-319","320-639","640-1279","1280-2559","2560-5119","5120-",NULL);
@@ -111,7 +111,7 @@ static int plen_stats_tree_packet(stats_tree* st, packet_info* pinfo, epan_disse
*/
static int st_node_dsts = -1;
-static const gchar* st_str_dsts = "Destinations";
+static const gchar* st_str_dsts = "IP Destinations";
static void dsts_stats_tree_init(stats_tree* st) {
st_node_dsts = stats_tree_create_node(st, st_str_dsts, 0, TRUE);