From 8f09ca436dbeda5350a0864adeaa22f920692382 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Thu, 20 Feb 2014 10:43:36 +0200 Subject: [PATCH] Improve comment on setting data_checksum GUC. There was an extra space there, and "fixed" wasn't very descriptive. --- src/backend/access/transam/xlog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 78b8f4695c..483d5c3eb5 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); }