diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-01-04 23:49:26 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-01-04 23:49:26 +0100 |
commit | d7e8f00e7e35daff9bcf96aa455ebc6f932d0882 (patch) | |
tree | adb1a7d2aca9317f10acff8a244ca6d4dca5a5f0 | |
parent | a1ee5eb2aae1f5e78909b36c979fd689ba319bbd (diff) |
Unix: Remove removed option from help
Also includes minor cleanup of help.
-rw-r--r-- | sysdep/unix/main.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index c31ccd17..921115b1 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -639,16 +639,15 @@ display_help(void) fprintf(stderr, "\n" "Options: \n" - " -b Run bird in background\n" - " -c <config-file> Use given configuration file instead\n" - " of prefix/etc/bird.conf\n" + " -c <config-file> Use given configuration file instead of\n" + " " PATH_CONFIG_FILE "\n" " -d Enable debug messages and run bird in foreground\n" " -D <debug-file> Log debug messages to given file instead of stderr\n" " -f Run bird in foreground\n" " -g <group> Use given group ID\n" " -h, --help Display this information\n" - " -l Look for a configuration file and a communication socket\n" - " file in the current working directory\n" + " -l Look for a configuration file and a control socket\n" + " in the current working directory\n" " -p Test configuration file and exit without start\n" " -P <pid-file> Create a PID file with given filename\n" " -R Apply graceful restart recovery after start\n" |