summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2017-11-09 16:57:20 +0000
committerTom Lane2017-11-09 16:57:43 +0000
commitb2ad6f9e2614f80e6dd88fe584e3aefac52cc454 (patch)
tree80cec8a6ff1796e43d29d3a2788804f9b271bc9c
parent9aa6a1b29b0238802583a3b358142752a77c253d (diff)
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
-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 a9f31efd13a..e393fd4786b 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -6514,7 +6514,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)