]> granicus.if.org Git - postgresql/commitdiff
Improve comment on setting data_checksum GUC.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Thu, 20 Feb 2014 08:43:36 +0000 (10:43 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Thu, 20 Feb 2014 08:58:30 +0000 (10:58 +0200)
There was an extra space there, and "fixed" wasn't very descriptive.

src/backend/access/transam/xlog.c

index 78b8f4695c30d1e07e516630bbb46368cbb373ae..483d5c3eb55605e2aad9a25fdfe7419fee4bca39 100644 (file)
@@ -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);
 }