aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-07-15 15:23:32 +0000
committerBruce Momjian <bruce@momjian.us>2004-07-15 15:23:32 +0000
commit036ecf7afb1aa413b2e66a0caba163cfcaf713d7 (patch)
tree5b311d9f82fb9798ae20cfeb87d2dc53374be50d
parent473165aff84506f013d5cb34187216c9c254c0b9 (diff)
downloadpostgresql-036ecf7afb1aa413b2e66a0caba163cfcaf713d7.tar.gz
postgresql-036ecf7afb1aa413b2e66a0caba163cfcaf713d7.zip
> pg_ctl --help
> ---skiped--- > -P user name of account to register PostgreSQL server > -U password of account to register PostgreSQL server > ---skiped--- > > I think that isn't right ;) Claudio Natoli
-rw-r--r--src/bin/pg_ctl/pg_ctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c
index e83701580f8..faf2b97790b 100644
--- a/src/bin/pg_ctl/pg_ctl.c
+++ b/src/bin/pg_ctl/pg_ctl.c
@@ -4,7 +4,7 @@
*
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.21 2004/07/12 19:18:18 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.22 2004/07/15 15:23:32 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1034,8 +1034,8 @@ do_help(void)
printf(_(" -s, --silent only print errors, no informational messages\n"));
#ifdef WIN32
printf(_(" -N service name with which to register PostgreSQL server\n"));
- printf(_(" -P user name of account to register PostgreSQL server\n"));
- printf(_(" -U password of account to register PostgreSQL server\n"));
+ printf(_(" -P password of account to register PostgreSQL server\n"));
+ printf(_(" -U user name of account to register PostgreSQL server\n"));
#endif
printf(_(" -w wait until operation completes\n"));
printf(_(" -W do not wait until operation completes\n"));