浏览代码

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

The -4/-6 options are currently not supported.
Holger Weiss 12 年之前
父节点
当前提交
329f843ef6
共有 1 个文件被更改,包括 1 次插入1 次删除
  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");
 }