Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix simple typo, statictics -> statistics #446

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion utilities/wireshark/ui/cli/tap-httpstat.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion utilities/wireshark/ui/cli/tap-rtspstat.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion utilities/wireshark/ui/cli/tap-sipstat.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down
2 changes: 1 addition & 1 deletion utilities/wireshark/ui/cli/tap-wspstat.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down