8000 Fix typo in ALTER SYSTEM output. · iCalistus/postgres@b2ad6f9 · GitHub
[go: up one dir, main page]

Skip to content

Commit b2ad6f9

Browse files
committed
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
1 parent 9aa6a1b commit b2ad6f9

File tree

1 file changed

+1
-1
lines changed
  • src/backend/utils/misc

1 file changed

+1
-1
lines changed

src/backend/utils/misc/guc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6514,7 +6514,7 @@ write_auto_conf_file(int fd, const char *filename, ConfigVariable *head)
65146514

65156515
/* Emit file header containing warning comment */
65166516
appendStringInfoString(&buf, "# Do not edit this file manually!\n");
6517-
appendStringInfoString(&buf, "# It will be overwritten by ALTER SYSTEM command.\n");
6517+
appendStringInfoString(&buf, "# It will be overwritten by the ALTER SYSTEM command.\n");
65186518

65196519
errno = 0;
65206520
if (write(fd, buf.data, buf.len) != buf.len)

0 commit comments

Comments
 (0)
0