aboutsummaryrefslogtreecommitdiff
path: root/src/backend/tcop/postgres.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2009-06-18 10:11:15 +0000
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2009-06-18 10:11:15 +0000
commit5f93b7c8eaa4981c0d2862fb2ab2b87ca74c2577 (patch)
tree77808060632febd1d44df4cff8bb4e40ece64e52 /src/backend/tcop/postgres.c
parentb28186bb84313172d0352c2889de2d3566b461c9 (diff)
downloadpostgresql-5f93b7c8eaa4981c0d2862fb2ab2b87ca74c2577.tar.gz
postgresql-5f93b7c8eaa4981c0d2862fb2ab2b87ca74c2577.zip
Fix error in comment. Fujii Masao
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r--src/backend/tcop/postgres.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c
index 1ebcaa482b6..55502ba9021 100644
--- a/src/backend/tcop/postgres.c
+++ b/src/backend/tcop/postgres.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.518.2.2 2008/12/13 02:00:52 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.518.2.3 2009/06/18 10:11:15 heikki Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
@@ -2783,8 +2783,8 @@ PostgresMain(int argc, char *argv[], const char *username)
* If the databasename is omitted it is taken to be the user name.
*
* When started from the postmaster, the format is
- * postgres [secure switches] -p databasename [insecure switches]
- * Switches appearing after -p came from the client (via "options"
+ * postgres [secure switches] -y databasename [insecure switches]
+ * Switches appearing after -y came from the client (via "options"
* field of connection request). For security reasons we restrict
* what these switches can do.
* ----------------
@@ -2797,7 +2797,7 @@ PostgresMain(int argc, char *argv[], const char *username)
argc--;
}
- /* all options are allowed until '-p' */
+ /* all options are allowed until '-y' */
secure = true;
ctx = PGC_POSTMASTER;
gucsource = PGC_S_ARGV; /* initial switches came from command line */