diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-06-29 16:05:57 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-06-29 16:05:57 +0000 |
commit | f889b12be93a83b7864eb1454a27cd145e8fe0ce (patch) | |
tree | f475747908694ca8bfa64c78feb1ea2b7e99d1ec /src/backend/postmaster/postmaster.c | |
parent | fb2c3289ff1b6d3084abddba04a8086b0409b763 (diff) | |
download | postgresql-f889b12be93a83b7864eb1454a27cd145e8fe0ce.tar.gz postgresql-f889b12be93a83b7864eb1454a27cd145e8fe0ce.zip |
Fix erroneous GUC variable references from commandline-GUC patch.
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 3b1a3a42079..1f02bf73a39 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -37,7 +37,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.228 2001/06/25 22:56:05 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.229 2001/06/29 16:05:57 tgl Exp $ * * NOTES * @@ -428,10 +428,10 @@ PostmasterMain(int argc, char *argv[]) switch (opt) { case 'A': -#ifndef USE_ASSERT_CHECKING - postmaster_error("Assert checking is not compiled in."); -#else +#ifdef USE_ASSERT_CHECKING SetConfigOption("debug_assertions", optarg, PGC_POSTMASTER, true); +#else + postmaster_error("Assert checking is not compiled in."); #endif break; case 'a': @@ -454,7 +454,7 @@ PostmasterMain(int argc, char *argv[]) SetConfigOption("debug_level", optarg, PGC_POSTMASTER, true); break; case 'F': - SetConfigOption("enable_fsync", "false", PGC_POSTMASTER, true); + SetConfigOption("fsync", "false", PGC_POSTMASTER, true); break; case 'h': SetConfigOption("virtual_host", optarg, PGC_POSTMASTER, true); |