aboutsummaryrefslogtreecommitdiffstats
path: root/rawshark.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-07-02 19:03:07 -0700
committerGuy Harris <guy@alum.mit.edu>2014-07-03 02:03:35 +0000
commit66c342ed59ed0e61f0b32c68b8197016a7299a6d (patch)
tree8742dd5bf61b7c442bcf7bf12e469cd660e497d5 /rawshark.c
parent0e4e825309a1dea3dde17a44d29d2be666c71335 (diff)
Regularize the first line of version output.
For Wireshark, say "Wireshark", not "wireshark". For other programs, put "(Wireshark)" after the program name, as per http://www.gnu.org/prep/standards/html_node/_002d_002dversion.html ("If the program is a subsidiary part of a larger package, mention the package name in parentheses, like this"). Change-Id: I68558f64cfa6ee4423e42f3d6b120633ef1b2716 Reviewed-on: https://code.wireshark.org/review/2788 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'rawshark.c')
-rw-r--r--rawshark.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/rawshark.c b/rawshark.c
index 0f860b4157..814fb38dc1 100644
--- a/rawshark.c
+++ b/rawshark.c
@@ -196,7 +196,7 @@ print_usage(gboolean print_ver)
if (print_ver) {
output = stdout;
fprintf(output,
- "Rawshark %s\n"
+ "Rawshark (Wireshark) %s\n"
"Dump and analyze network traffic.\n"
"See http://www.wireshark.org for more information.\n"
"\n"
@@ -434,7 +434,7 @@ set_link_type(const char *lt_arg) {
static void
show_version(GString *comp_info_str, GString *runtime_info_str)
{
- printf("Rawshark %s\n"
+ printf("Rawshark (Wireshark) %s\n"
"\n"
"%s"
"\n"
@@ -489,7 +489,7 @@ main(int argc, char *argv[])
get_runtime_version_info(runtime_info_str, NULL);
/* Add it to the information to be reported on a crash. */
- ws_add_crash_info("Rawshark %s\n"
+ ws_add_crash_info("Rawshark (Wireshark) %s\n"
"\n"
"%s"
"\n"