Explorar el Código

check_pgsql: Remove -4/-6 flags from help output

The -4/-6 options are currently not supported.
Holger Weiss hace 12 años
padre
commit
329f843ef6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      plugins/check_pgsql.c

+ 1 - 1
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");
 }