Fix error in comment. Fujii Masao
authorHeikki Linnakangas <[email protected]>
Thu, 18 Jun 2009 10:09:34 +0000 (10:09 +0000)
committerHeikki Linnakangas <[email protected]>
Thu, 18 Jun 2009 10:09:34 +0000 (10:09 +0000)
src/backend/tcop/postgres.c

index 5bfeae97d67bc623a5c4eb54fc2c2249e5bd66ef..6269fab5bec2190528b4316ccc75c0716132b4ea 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.542.2.4 2009/01/01 17:12:24 tgl Exp $
+ *   $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.542.2.5 2009/06/18 10:09:34 heikki Exp $
  *
  * NOTES
  *   this is the "main" module of the postgres backend and
@@ -2931,8 +2931,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.
     * ----------------
@@ -2945,7 +2945,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 */