aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pg_dump/dumputils.c
diff options
context:
space:
mode:
authorDaniel Gustafsson <dgustafsson@postgresql.org>2023-03-02 13:49:39 +0100
committerDaniel Gustafsson <dgustafsson@postgresql.org>2023-03-02 13:49:39 +0100
commit7ab1bc2939f32aa995bdb81eaac3bb28f908e980 (patch)
tree79df7e4ce1b2ea07fa4da8576fe2faa455862dcd /src/bin/pg_dump/dumputils.c
parent4ac30ba4f29d4b586b131404b0d514f16501272a (diff)
downloadpostgresql-7ab1bc2939f32aa995bdb81eaac3bb28f908e980.tar.gz
postgresql-7ab1bc2939f32aa995bdb81eaac3bb28f908e980.zip
Fix outdated references to guc.c
Commit 0a20ff54f split out the GUC variables from guc.c into a new file guc_tables.c. This updates comments referencing guc.c regarding variables which are now in guc_tables.c. Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us> Discussion: https://postgr.es/m/6B50C70C-8C1F-4F9A-A7C0-EEAFCC032406@yesql.se
Diffstat (limited to 'src/bin/pg_dump/dumputils.c')
-rw-r--r--src/bin/pg_dump/dumputils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_dump/dumputils.c b/src/bin/pg_dump/dumputils.c
index 9753a6d8682..079693585ce 100644
--- a/src/bin/pg_dump/dumputils.c
+++ b/src/bin/pg_dump/dumputils.c
@@ -683,7 +683,7 @@ emitShSecLabels(PGconn *conn, PGresult *res, PQExpBuffer buffer,
* currently known to guc.c, so that it'd be unsafe for extensions to declare
* GUC_LIST_QUOTE variables anyway. Lacking a solution for that, it doesn't
* seem worth the work to do more than have this list, which must be kept in
- * sync with the variables actually marked GUC_LIST_QUOTE in guc.c.
+ * sync with the variables actually marked GUC_LIST_QUOTE in guc_tables.c.
*/
bool
variable_is_guc_list_quote(const char *name)