aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-03-19 18:16:39 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-03-19 18:16:39 +0000
commit6a0bf13c458c9a08c62417b9e8944abf558f53e2 (patch)
tree9c5065bfe3aa3f50ea3083a97ff96081b3f142b7
parentbcaacc05690a9aa4def5a7f0439a395f71dd8607 (diff)
Fix capitalization of tree topics
svn path=/trunk/; revision=13813
-rw-r--r--plugins/stats_tree/http_stats_tree.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/stats_tree/http_stats_tree.c b/plugins/stats_tree/http_stats_tree.c
index 99b9e10233..97f4ef7b5f 100644
--- a/plugins/stats_tree/http_stats_tree.c
+++ b/plugins/stats_tree/http_stats_tree.c
@@ -146,7 +146,7 @@ static int http_reqs_stats_tree_packet(stats_tree* st, packet_info* pinfo, epan_
static int st_node_requests_by_host = -1;
-static const guint8* st_str_requests_by_host = "HTTP requests by HTTP Host";
+static const guint8* st_str_requests_by_host = "HTTP Requests by HTTP Host";
static void http_req_stats_tree_init(stats_tree* st) {
st_node_requests_by_host = create_node(st, st_str_requests_by_host, 0, TRUE);
@@ -174,15 +174,15 @@ static int http_req_stats_tree_packet(stats_tree* st, packet_info* pinfo _U_, ep
}
static const guint8* st_str_packets = "Total HTTP Packets";
-static const guint8* st_str_responses = "HTTP responses";
+static const guint8* st_str_responses = "HTTP Response Packets";
static const guint8* st_str_resp_broken = "???: broken";
static const guint8* st_str_resp_100 = "1xx: Informational";
static const guint8* st_str_resp_200 = "2xx: Success";
static const guint8* st_str_resp_300 = "3xx: Redirection";
static const guint8* st_str_resp_400 = "4xx: Client Error";
static const guint8* st_str_resp_500 = "5xx: Server Error";
-static const guint8* st_str_requests = "HTTP requests";
-static const guint8* st_str_other = "Other HTTP packets";
+static const guint8* st_str_requests = "HTTP Request Packets";
+static const guint8* st_str_other = "Other HTTP Packets";
static int st_node_packets = -1;
static int st_node_responses = -1;