From: Heikki Linnakangas Date: Thu, 20 Feb 2014 08:43:36 +0000 (+0200) Subject: Improve comment on setting data_checksum GUC. X-Git-Tag: REL9_4_BETA1~439 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f09ca436dbeda5350a0864adeaa22f920692382;p=postgresql Improve comment on setting data_checksum GUC. There was an extra space there, and "fixed" wasn't very descriptive. --- 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); }