diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-06-25 23:03:03 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-06-25 23:03:03 +0000 |
commit | 5ba723e95099b9a65394f114ec20d5b239a47967 (patch) | |
tree | b5041f5b19c277e287696ebb71134b0ef62813ca /src/backend/bootstrap/bootstrap.c | |
parent | 2e67a67715abb7151c01d14b8321fa2f79514a75 (diff) | |
download | postgresql-5ba723e95099b9a65394f114ec20d5b239a47967.tar.gz postgresql-5ba723e95099b9a65394f114ec20d5b239a47967.zip |
Fix a couple remaining places where GUC variables were assigned to
directly, rather than through SetConfigOption().
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 460bc80ff56..23bcc420368 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.109 2001/06/12 22:54:05 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.110 2001/06/25 23:03:03 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -260,7 +260,7 @@ BootstrapMain(int argc, char *argv[]) * parsing */ break; case 'F': - enableFsync = false; + SetConfigOption("fsync", "false", PGC_POSTMASTER, true); break; case 'x': xlogop = atoi(optarg); @@ -269,7 +269,7 @@ BootstrapMain(int argc, char *argv[]) /* indicates fork from postmaster */ break; case 'B': - NBuffers = atoi(optarg); + SetConfigOption("shared_buffers", optarg, PGC_POSTMASTER, true); break; default: usage(); |