aboutsummaryrefslogtreecommitdiff
path: root/src/backend/bootstrap/bootstrap.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2002-02-23 01:31:37 +0000
committerPeter Eisentraut <peter_e@gmx.net>2002-02-23 01:31:37 +0000
commit51f195580f5cd99fc26ced01619e4f50d5949d0c (patch)
tree8126095eedab94883246be074bca5e9d3113b7aa /src/backend/bootstrap/bootstrap.c
parentab786f6299b86aa9e58e7e9a5d664faa4de7eb85 (diff)
downloadpostgresql-51f195580f5cd99fc26ced01619e4f50d5949d0c.tar.gz
postgresql-51f195580f5cd99fc26ced01619e4f50d5949d0c.zip
Save source of GUC settings, allowing different sources to be processed in
any order without affecting results.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r--src/backend/bootstrap/bootstrap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c
index cd118d30d74..48cbf570e83 100644
--- a/src/backend/bootstrap/bootstrap.c
+++ b/src/backend/bootstrap/bootstrap.c
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.120 2002/01/10 01:11:45 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.121 2002/02/23 01:31:34 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -262,7 +262,7 @@ BootstrapMain(int argc, char *argv[])
* parsing */
break;
case 'F':
- SetConfigOption("fsync", "false", PGC_POSTMASTER, true);
+ SetConfigOption("fsync", "false", PGC_POSTMASTER, PGC_S_ARGV);
break;
case 'o':
StrNCpy(OutputFileName, optarg, MAXPGPATH);
@@ -274,7 +274,7 @@ BootstrapMain(int argc, char *argv[])
/* indicates fork from postmaster */
break;
case 'B':
- SetConfigOption("shared_buffers", optarg, PGC_POSTMASTER, true);
+ SetConfigOption("shared_buffers", optarg, PGC_POSTMASTER, PGC_S_ARGV);
break;
default:
usage();