commandline: use g_get_prgname() in error messages.

For the main GUI application for a given application favor, the
lower-cased version of the application flavor name happens to be the
same as the name of the application as a command, but don't rely on
that.
This commit is contained in:
Guy Harris 2024-11-28 23:07:03 -08:00
parent 55ddbd3101
commit 413ad57730

View File

@ -69,7 +69,7 @@ commandline_print_usage(bool for_help_option) {
output = stderr;
}
fprintf(output, "\n");
fprintf(output, "Usage: %s [options] ... [ <infile> ]\n", application_flavor_name_lower());
fprintf(output, "Usage: %s [options] ... [ <infile> ]\n", g_get_prgname());
fprintf(output, "\n");
#ifdef HAVE_LIBPCAP
@ -647,7 +647,7 @@ void commandline_other_options(int argc, char *argv[], bool opt_reset)
part of a tap filter. Instead, we just add the argument
to a list of stat arguments. */
if (strcmp("help", ws_optarg) == 0) {
fprintf(stderr, "%s: The available statistics for the \"-z\" option are:\n", application_flavor_name_lower());
fprintf(stderr, "%s: The available statistics for the \"-z\" option are:\n", g_get_prgname());
list_stat_cmd_args();
exit_application(0);
}