diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-07-24 20:01:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-07-24 20:01:42 +0000 |
commit | 1e5d82493c2b3655f56d8552632eb027edc78d18 (patch) | |
tree | 96036f50f954f327e86dc0c4a169b6f2e96ae2fa | |
parent | 0655b26282466be8cb0ffbef4f5c825f889acf4a (diff) | |
download | postgresql-1e5d82493c2b3655f56d8552632eb027edc78d18.tar.gz postgresql-1e5d82493c2b3655f56d8552632eb027edc78d18.zip |
Fix obsolete comment.
-rw-r--r-- | src/backend/postmaster/postmaster.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 02843bd2047..ada0e61705c 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -37,7 +37,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.414 2004/07/21 20:34:46 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.415 2004/07/24 20:01:42 tgl Exp $ * * NOTES * @@ -853,9 +853,9 @@ PostmasterMain(int argc, char *argv[]) /* * Reset whereToSendOutput from Debug (its starting state) to None. - * This prevents ereport from sending log messages to stderr unless - * the syslog/stderr switch permits. We don't do this until the - * postmaster is fully launched, since startup failures may as well be + * This stops ereport from sending log messages to stderr unless + * Log_destination permits. We don't do this until the postmaster + * is fully launched, since startup failures may as well be * reported to stderr. */ whereToSendOutput = None; |