Fix typo in ALTER SYSTEM output.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 9 Nov 2017 16:57:20 +0000 (11:57 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 9 Nov 2017 16:57:20 +0000 (11:57 -0500)
The header comment written into postgresql.auto.conf by ALTER SYSTEM
should match what initdb put there originally.

Feike Steenbergen

Discussion: https://postgr.es/m/CAK_s-G0KcKdO=0hqZkwb3s+tqZuuHwWqmF5BDsmoO9FtX75r0g@mail.gmail.com

src/backend/utils/misc/guc.c

index a609619f4d65fb34949865ed5340dc506e671c80..da061023f52f5807924a75cf57df1f65d1ae9a14 100644 (file)
@@ -6944,7 +6944,7 @@ write_auto_conf_file(int fd, const char *filename, ConfigVariable *head)
 
    /* Emit file header containing warning comment */
    appendStringInfoString(&buf, "# Do not edit this file manually!\n");
-   appendStringInfoString(&buf, "# It will be overwritten by ALTER SYSTEM command.\n");
+   appendStringInfoString(&buf, "# It will be overwritten by the ALTER SYSTEM command.\n");
 
    errno = 0;
    if (write(fd, buf.data, buf.len) != buf.len)