From: Peter Eisentraut Date: Fri, 17 Mar 2023 20:39:44 +0000 (+0100) Subject: Fix typo X-Git-Tag: REL_16_BETA1~496 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=cc1392d4aa5206d6b4dcc1b036f7a001bcac4197;p=postgresql.git Fix typo Introduced in de4d456b40. Reported-by: Erik Rijkers --- diff --git a/src/backend/commands/user.c b/src/backend/commands/user.c index 52796e95487..707114bdd06 100644 --- a/src/backend/commands/user.c +++ b/src/backend/commands/user.c @@ -1043,7 +1043,7 @@ AlterRoleSet(AlterRoleSetStmt *stmt) (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), errmsg("permission denied to alter role"), errdetail("Only roles with the %s attribute and the %s option on role \"%s\" may alter this role.", - "CREATROLE", "ADMIN", NameStr(roleform->rolname)))); + "CREATEROLE", "ADMIN", NameStr(roleform->rolname)))); } ReleaseSysCache(roletuple);