From 9dd78f34dbb387c63b5e676911beac1b8f25d6f6 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Wed, 7 Jan 2015 08:56:05 +0900 Subject: [PATCH] Add missing short options to --help output --- repmgrd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repmgrd.c b/repmgrd.c index a8080210..5f51e6f5 100644 --- a/repmgrd.c +++ b/repmgrd.c @@ -1333,8 +1333,8 @@ help(const char *progname) printf(_("\nOptions:\n")); printf(_(" --help show this help, then exit\n")); printf(_(" --version output version information, then exit\n")); - printf(_(" --verbose output verbose activity information\n")); - printf(_(" --monitoring-history track advance or lag of the replication in every standby in repl_monitor\n")); + printf(_(" -v, --verbose output verbose activity information\n")); + printf(_(" -m, --monitoring-history track advance or lag of the replication in every standby in repl_monitor\n")); printf(_(" -f, --config-file=PATH path to the configuration file\n")); printf(_(" -d, --daemonize detach process from foreground\n")); printf(_(" -p, --pid-file=PATH write a PID file\n"));