Commit 885a4d3d authored by Alvaro Herrera's avatar Alvaro Herrera

Our version of getopt_long does not set optarg upon detecting an error, as

opposed to what other versions apparently do, so it's not safe to print an
error message.  Besides, getopt_long itself already did, so it's redundant
anyway.
parent e970b2a6
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* *
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
* *
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.69 2006/06/18 15:38:37 petere Exp $ * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.70 2006/06/25 04:37:55 alvherre Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -1608,7 +1608,7 @@ main(int argc, char **argv) ...@@ -1608,7 +1608,7 @@ main(int argc, char **argv)
wait_set = true; wait_set = true;
break; break;
default: default:
write_stderr(_("%s: invalid option %s\n"), progname, optarg); /* getopt_long already issued a suitable error message */
do_advice(); do_advice();
exit(1); exit(1);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment