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:37 -0500
commit1da48a9a6b9dced66610b70f94f1e5418afc1f8c (patch)
treefef490efaaa2e608851374752fcddff9ebd85cb8 /src
parent3b04eb98f5f330215b67e7818ef136d991f9a16e (diff)
downloadpostgresql-1da48a9a6b9dced66610b70f94f1e5418afc1f8c.tar.gz
postgresql-1da48a9a6b9dced66610b70f94f1e5418afc1f8c.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 309d3566f44..f2f8310f5b7 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -6656,7 +6656,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)