aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2019-07-26 11:56:31 +0200
committerDaniel Willmann <dwillmann@sysmocom.de>2019-07-26 11:59:00 +0200
commit03a2ed5b30ff07345b406f1a13e18f6cb3adf629 (patch)
tree515a29137cc40d9f3be55b3301d31a63d7988eb3
parent40fce10e46203062639e0e90a3e4eed24bd751c6 (diff)
Add/fix help string for version option
osmo-sgsn was missing the help text of the -V option gb_proxy still thought of itself as OpenBSC Omit the name of the program in the help text to avoid such issues in the future. Related: OS#1720 Change-Id: Ib57694b6bff7c98a269dc4b4dbb7173349a57b81
-rw-r--r--src/gprs/gb_proxy_main.c2
-rw-r--r--src/gprs/gtphub_main.c2
-rw-r--r--src/gprs/sgsn_main.c1
3 files changed, 3 insertions, 2 deletions
diff --git a/src/gprs/gb_proxy_main.c b/src/gprs/gb_proxy_main.c
index 19fbbba8f..1e1aeac25 100644
--- a/src/gprs/gb_proxy_main.c
+++ b/src/gprs/gb_proxy_main.c
@@ -140,7 +140,7 @@ static void print_help()
printf(" -c --config-file filename The config file to use [%s]\n", CONFIG_FILE_DEFAULT);
printf(" -s --disable-color\n");
printf(" -T --timestamp Prefix every log line with a timestamp\n");
- printf(" -V --version. Print the version of OpenBSC.\n");
+ printf(" -V --version. Print the version.\n");
printf(" -e --log-level number. Set a global loglevel.\n");
}
diff --git a/src/gprs/gtphub_main.c b/src/gprs/gtphub_main.c
index 585a3cb5e..6d470bd4b 100644
--- a/src/gprs/gtphub_main.c
+++ b/src/gprs/gtphub_main.c
@@ -238,7 +238,7 @@ static void print_help(struct cmdline_cfg *ccfg)
printf(" -e,--log-level <nr> Set a global log level.\n");
printf(" -r,--restart-file <path> File for counting restarts [%s].\n",
ccfg->restart_counter_file);
- printf(" -V,--version Print the version number.\n");
+ printf(" -V,--version Print the version.\n");
}
static void list_categories(void)
diff --git a/src/gprs/sgsn_main.c b/src/gprs/sgsn_main.c
index f12270de8..3543517c1 100644
--- a/src/gprs/sgsn_main.c
+++ b/src/gprs/sgsn_main.c
@@ -209,6 +209,7 @@ static void print_help(void)
{
printf("Some useful help...\n");
printf(" -h --help\tthis text\n");
+ printf(" -V --version\tPrint the version\n");
printf(" -D --daemonize\tFork the process into a background daemon\n");
printf(" -d option --debug\tenable Debugging\n");
printf(" -s --disable-color\n");