0001-Make-header-of-postgresql.conf.auto-consistent.patch
application/octet-stream
Filename: 0001-Make-header-of-postgresql.conf.auto-consistent.patch
Type: application/octet-stream
Part: 0
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: format-patch
Series: patch 0001
Subject: Make header of postgresql.conf.auto consistent
| File | + | − |
|---|---|---|
| src/backend/utils/misc/guc.c | 1 | 1 |
From 5ab6eff285ce29a1605995052de23fa05dfe511f Mon Sep 17 00:00:00 2001 From: Feike Steenbergen <feike.steenbergen@adyen.com> Date: Thu, 9 Nov 2017 09:01:28 +0100 Subject: [PATCH 1/1] Make header of postgresql.conf.auto consistent --- src/backend/utils/misc/guc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index a609619f4d..da061023f5 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) -- 2.13.6 (Apple Git-96)