diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-02-20 10:43:36 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-02-20 10:58:30 +0200 |
commit | 8f09ca436dbeda5350a0864adeaa22f920692382 (patch) | |
tree | ae00e82fa61c9001ee48f0a4c5b78f6c42cd2835 /src/backend/access/transam/xlog.c | |
parent | ae5266f25910d6e084692a7cdbd02b9e52800046 (diff) | |
download | postgresql-8f09ca436dbeda5350a0864adeaa22f920692382.tar.gz postgresql-8f09ca436dbeda5350a0864adeaa22f920692382.zip |
Improve comment on setting data_checksum GUC.
There was an extra space there, and "fixed" wasn't very descriptive.
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 78b8f4695c3..483d5c3eb55 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -4894,7 +4894,7 @@ ReadControlFile(void) errhint("It looks like you need to recompile or initdb."))); #endif - /* Make the fixed settings visible as GUC variables, too */ + /* Make the initdb settings visible as GUC variables, too */ SetConfigOption("data_checksums", DataChecksumsEnabled() ? "yes" : "no", PGC_INTERNAL, PGC_S_OVERRIDE); } |