Fix a few errors in comments. Patch by Fujii Masao, plus the one in

visibilitymap.c by me.
This commit is contained in:
Heikki Linnakangas 2009-06-18 10:08:08 +00:00
parent f08e5e92e8
commit efa8544fd5
3 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.23 2009/06/11 14:48:51 momjian Exp $ * $PostgreSQL: pgsql/contrib/pg_standby/pg_standby.c,v 1.24 2009/06/18 10:08:08 heikki Exp $
* *
* *
* pg_standby.c * pg_standby.c
@ -448,7 +448,7 @@ CheckForExternalTrigger(void)
/* /*
* Turn it into a "smart" trigger by truncating the file. Otherwise if * Turn it into a "smart" trigger by truncating the file. Otherwise if
* the server asks us again to restore a segment that was restored * the server asks us again to restore a segment that was restored
* restored already, we would return "not found" and upset the server. * already, we would return "not found" and upset the server.
*/ */
if (ftruncate(fd, 0) < 0) if (ftruncate(fd, 0) < 0)
{ {

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/access/heap/visibilitymap.c,v 1.4 2009/06/11 14:48:54 momjian Exp $ * $PostgreSQL: pgsql/src/backend/access/heap/visibilitymap.c,v 1.5 2009/06/18 10:08:08 heikki Exp $
* *
* INTERFACE ROUTINES * INTERFACE ROUTINES
* visibilitymap_clear - clear a bit in the visibility map * visibilitymap_clear - clear a bit in the visibility map
@ -98,8 +98,8 @@
/* /*
* Size of the bitmap on each visibility map page, in bytes. There's no * Size of the bitmap on each visibility map page, in bytes. There's no
* extra headers, so the whole page minus except for the standard page header * extra headers, so the whole page minus the standard page header is
* is used for the bitmap. * used for the bitmap.
*/ */
#define MAPSIZE (BLCKSZ - MAXALIGN(SizeOfPageHeaderData)) #define MAPSIZE (BLCKSZ - MAXALIGN(SizeOfPageHeaderData))

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.567 2009/06/11 14:49:02 momjian Exp $ * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.568 2009/06/18 10:08:08 heikki Exp $
* *
* NOTES * NOTES
* this is the "main" module of the postgres backend and * this is the "main" module of the postgres backend and
@ -2924,8 +2924,8 @@ PostgresMain(int argc, char *argv[], const char *username)
* If the databasename is omitted it is taken to be the user name. * If the databasename is omitted it is taken to be the user name.
* *
* When started from the postmaster, the format is * When started from the postmaster, the format is
* postgres [secure switches] -p databasename [insecure switches] * postgres [secure switches] -y databasename [insecure switches]
* Switches appearing after -p came from the client (via "options" * Switches appearing after -y came from the client (via "options"
* field of connection request). For security reasons we restrict * field of connection request). For security reasons we restrict
* what these switches can do. * what these switches can do.
* ---------------- * ----------------
@ -2938,7 +2938,7 @@ PostgresMain(int argc, char *argv[], const char *username)
argc--; argc--;
} }
/* all options are allowed until '-p' */ /* all options are allowed until '-y' */
secure = true; secure = true;
ctx = PGC_POSTMASTER; ctx = PGC_POSTMASTER;
gucsource = PGC_S_ARGV; /* initial switches came from command line */ gucsource = PGC_S_ARGV; /* initial switches came from command line */