aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
authorChuck Craft <bubbasnmp@gmail.com>2021-10-09 12:04:42 -0500
committerWireshark GitLab Utility <gerald+gitlab-utility@wireshark.org>2021-10-21 19:54:20 +0000
commita541fcb52818b1b1ca17e1a3936cefdf05732a8f (patch)
tree617de48399590ed99ecd96a95e99a108222ce622 /tshark.c
parent98c0b5ad629fdb8e9a10199e32ba066b198c2eda (diff)
docs/tshark: proper name is lopsided CamelCase (TShark)
This is a first pass that covers the WSDG, WSUG, man page, a code comment and a README. Plenty left to do in the Debian files, a few Lua examples and other misc files.
Diffstat (limited to 'tshark.c')
-rw-r--r--tshark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tshark.c b/tshark.c
index fbe2229c11..2dbcddeec7 100644
--- a/tshark.c
+++ b/tshark.c
@@ -3564,7 +3564,7 @@ process_cap_file(capture_file *cf, char *save_file, int out_file_type,
/* Set up to write to the capture file. */
wtap_dump_params_init_no_idbs(&params, cf->provider.wth);
- /* If we don't have an application name add Tshark */
+ /* If we don't have an application name add TShark */
if (wtap_block_get_string_option_value(g_array_index(params.shb_hdrs, wtap_block_t, 0), OPT_SHB_USERAPPL, &shb_user_appl) != WTAP_OPTTYPE_SUCCESS) {
/* this is free'd by wtap_block_unref() later */
wtap_block_add_string_option_format(g_array_index(params.shb_hdrs, wtap_block_t, 0), OPT_SHB_USERAPPL, "%s", get_appname_and_version());