From b6cfb7427b6e2cb7cd791dcd14f67f2893bcbd26 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 28 Nov 2020 18:28:15 +1100 Subject: [PATCH] docs: fix simple typo, statictics -> statistics There is a small typo in utilities/wireshark/ui/cli/tap-httpstat.c, utilities/wireshark/ui/cli/tap-rtspstat.c, utilities/wireshark/ui/cli/tap-sipstat.c, utilities/wireshark/ui/cli/tap-wspstat.c. Should read `statistics` rather than `statictics`. --- utilities/wireshark/ui/cli/tap-httpstat.c | 2 +- utilities/wireshark/ui/cli/tap-rtspstat.c | 2 +- utilities/wireshark/ui/cli/tap-sipstat.c | 2 +- utilities/wireshark/ui/cli/tap-wspstat.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/utilities/wireshark/ui/cli/tap-httpstat.c b/utilities/wireshark/ui/cli/tap-httpstat.c index 6b7334b22..b1421bf45 100644 --- a/utilities/wireshark/ui/cli/tap-httpstat.c +++ b/utilities/wireshark/ui/cli/tap-httpstat.c @@ -36,7 +36,7 @@ void register_tap_listener_httpstat(void); -/* used to keep track of the statictics for an entire program interface */ +/* used to keep track of the statistics for an entire program interface */ typedef struct _http_stats_t { char *filter; GHashTable *hash_responses; diff --git a/utilities/wireshark/ui/cli/tap-rtspstat.c b/utilities/wireshark/ui/cli/tap-rtspstat.c index 20d15e464..2f0b5fba1 100644 --- a/utilities/wireshark/ui/cli/tap-rtspstat.c +++ b/utilities/wireshark/ui/cli/tap-rtspstat.c @@ -39,7 +39,7 @@ void register_tap_listener_rtspstat(void); -/* used to keep track of the statictics for an entire program interface */ +/* used to keep track of the statistics for an entire program interface */ typedef struct _rtsp_stats_t { char *filter; GHashTable *hash_responses; diff --git a/utilities/wireshark/ui/cli/tap-sipstat.c b/utilities/wireshark/ui/cli/tap-sipstat.c index a7936102d..7807e0635 100644 --- a/utilities/wireshark/ui/cli/tap-sipstat.c +++ b/utilities/wireshark/ui/cli/tap-sipstat.c @@ -38,7 +38,7 @@ void register_tap_listener_sipstat(void); -/* used to keep track of the statictics for an entire program interface */ +/* used to keep track of the statistics for an entire program interface */ typedef struct _sip_stats_t { char *filter; guint32 packets; /* number of sip packets, including continuations */ diff --git a/utilities/wireshark/ui/cli/tap-wspstat.c b/utilities/wireshark/ui/cli/tap-wspstat.c index b2a0ba46a..560c65f7c 100644 --- a/utilities/wireshark/ui/cli/tap-wspstat.c +++ b/utilities/wireshark/ui/cli/tap-wspstat.c @@ -51,7 +51,7 @@ typedef struct _wsp_status_code_t { const gchar *name; guint32 packets; } wsp_status_code_t; -/* used to keep track of the statictics for an entire program interface */ +/* used to keep track of the statistics for an entire program interface */ typedef struct _wsp_stats_t { char *filter; wsp_pdu_t *pdu_stats;