aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlog.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-02-20 10:43:36 +0200
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2014-02-20 10:58:30 +0200
commit8f09ca436dbeda5350a0864adeaa22f920692382 (patch)
treeae00e82fa61c9001ee48f0a4c5b78f6c42cd2835 /src/backend/access/transam/xlog.c
parentae5266f25910d6e084692a7cdbd02b9e52800046 (diff)
downloadpostgresql-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.c2
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);
}