aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Diniz <rafael@riseup.net>2019-04-06 18:21:55 -0300
committerRafael Diniz <rafael@rhizomatica.org>2019-04-08 19:28:02 +0000
commit0e6e45a65f984d346444f47411244b255cb39301 (patch)
tree5fcba157356bc087513adb2ff7eed9c8ad94e4f7
parent34513feff98eb84028332cc54596d1e1748c0f71 (diff)
Fix help message formatting of osmo-pcu.
-rw-r--r--src/pcu_main.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/pcu_main.cpp b/src/pcu_main.cpp
index c39c3376..1003e3c4 100644
--- a/src/pcu_main.cpp
+++ b/src/pcu_main.cpp
@@ -65,20 +65,20 @@ static const char *gsmtap_addr = "localhost"; // FIXME: use gengetopt's default
static void print_help()
{
- printf( "Some useful options:\n"
- " -h --help this text\n"
+ printf( "Options:\n"
+ " -h --help This text\n"
" -c --config-file Specify the filename of the config "
"file\n"
- " -m --mcc MCC use given MCC instead of value "
+ " -m --mcc MCC Use given MCC instead of value "
"provided by BTS\n"
- " -n --mnc MNC use given MNC instead of value "
+ " -n --mnc MNC Use given MNC instead of value "
"provided by BTS\n"
- " -V --version print version\n"
- " -r --realtime PRIO Use SCHED_RR with the specified "
+ " -V --version Print version\n"
+ " -r --realtime PRIO Use SCHED_RR with the specified "
"priority\n"
- " -D --daemonize Fork the process into a background"
+ " -D --daemonize Fork the process into a background "
"daemon\n"
- " -i --gsmtap-ip The destination IP used for GSMTAP.\n"
+ " -i --gsmtap-ip The destination IP used for GSMTAP\n"
);
}