From: Peter Eisentraut Date: Tue, 17 Mar 2009 10:10:13 +0000 (+0000) Subject: Add -w option to --help output. It was apparently forgotten when -w was X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=d927e29b31b4d996f3863122cfd057274fec8368;p=users%2Fsimon%2Fpostgres.git Add -w option to --help output. It was apparently forgotten when -w was implemented. --- diff --git a/src/bin/pg_dump/pg_dump.c b/src/bin/pg_dump/pg_dump.c index 99e5b88488..b14be8fc1f 100644 --- a/src/bin/pg_dump/pg_dump.c +++ b/src/bin/pg_dump/pg_dump.c @@ -841,6 +841,7 @@ help(const char *progname) printf(_(" -h, --host=HOSTNAME database server host or socket directory\n")); printf(_(" -p, --port=PORT database server port number\n")); printf(_(" -U, --username=NAME connect as specified database user\n")); + printf(_(" -w, --no-password never prompt for password\n")); printf(_(" -W, --password force password prompt (should happen automatically)\n")); printf(_("\nIf no database name is supplied, then the PGDATABASE environment\n"