diff options
author | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-08-17 22:33:43 +0200 |
---|---|---|
committer | Holger Weiss <holger@zedat.fu-berlin.de> | 2013-08-17 22:33:43 +0200 |
commit | 329f843ef6aceed19389e21b44f97686771b235c (patch) | |
tree | d9124e2de0613fb390f63f8f2afb2848edae4cb9 /plugins/check_pgsql.c | |
parent | e47a06f77d58ca0c01d56e2e9993095a4849d149 (diff) | |
download | monitoring-plugins-329f843ef6aceed19389e21b44f97686771b235c.tar.gz |
check_pgsql: Remove -4/-6 flags from help output
The -4/-6 options are currently not supported.
Diffstat (limited to 'plugins/check_pgsql.c')
-rw-r--r-- | plugins/check_pgsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_pgsql.c b/plugins/check_pgsql.c index c109955a..d3116b00 100644 --- a/plugins/check_pgsql.c +++ b/plugins/check_pgsql.c @@ -576,7 +576,7 @@ void print_usage (void) { printf ("%s\n", _("Usage:")); - printf ("%s [-H <host>] [-4|-6] [-P <port>] [-c <critical time>] [-w <warning time>]\n", progname); + printf ("%s [-H <host>] [-P <port>] [-c <critical time>] [-w <warning time>]\n", progname); printf (" [-t <timeout>] [-d <database>] [-l <logname>] [-p <password>]\n" "[-q <query>] [-C <critical query range>] [-W <warning query range>]\n"); } |