aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/acl.c
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2023-04-21 10:46:08 +1200
committerDavid Rowley <drowley@postgresql.org>2023-04-21 10:46:08 +1200
commitd91d1635292a290191339b868bcc71ef42ca50ce (patch)
tree824743b8be86ed63c50bbed85342c3ab7a0d0368 /src/backend/utils/adt/acl.c
parent0ecb87e1fa07a733494e35636e55807b0f3fc1ed (diff)
downloadpostgresql-d91d1635292a290191339b868bcc71ef42ca50ce.tar.gz
postgresql-d91d1635292a290191339b868bcc71ef42ca50ce.zip
Fix incorrect function name reference
This function was renamed in 0c9d84427 but this comment wasn't updated. Author: Alexander Lakhin Discussion: https://postgr.es/m/699beab4-a6ca-92c9-f152-f559caf6dc25@gmail.com
Diffstat (limited to 'src/backend/utils/adt/acl.c')
-rw-r--r--src/backend/utils/adt/acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/acl.c b/src/backend/utils/adt/acl.c
index c5a6babccc2..729ebd86d14 100644
--- a/src/backend/utils/adt/acl.c
+++ b/src/backend/utils/adt/acl.c
@@ -189,7 +189,7 @@ getid(const char *s, char *n, Node *escontext)
/*
* Write a role name at *p, adding double quotes if needed.
* There must be at least (2*NAMEDATALEN)+2 bytes available at *p.
- * This needs to be kept in sync with copyAclUserName in pg_dump/dumputils.c
+ * This needs to be kept in sync with dequoteAclUserName in pg_dump/dumputils.c
*/
static void
putid(char *p, const char *s)