aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2017-11-09 11:57:20 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2017-11-09 11:57:20 -0500
commit6c3a7ba5bb0f960ed412b1c36e815f53347b3d79 (patch)
treeac86b761a00dcbfd4cdf3a8e34abf3538eb2ccab /src
parent9be95ef156e7c2ae0924300acddd483504fa33b3 (diff)
downloadpostgresql-6c3a7ba5bb0f960ed412b1c36e815f53347b3d79.tar.gz
postgresql-6c3a7ba5bb0f960ed412b1c36e815f53347b3d79.zip
Fix typo in ALTER SYSTEM output.
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
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/misc/guc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index a609619f4d6..da061023f52 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -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)