Skip to content

Commit 17d8cf2

Browse files
committed
Update description of parameter password_encryption
The previous description string still described the pre-PostgreSQL 10 (pre eb61136) behavior of selecting between encrypted and unencrypted, but it is now choosing between encryption algorithms.
1 parent 980a3cd commit 17d8cf2

File tree

1 file changed

+2
-4
lines changed
  • src/backend/utils/misc

1 file changed

+2
-4
lines changed

src/backend/utils/misc/guc.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4490,10 +4490,8 @@ static struct config_enum ConfigureNamesEnum[] =
44904490

44914491
{
44924492
{"password_encryption", PGC_USERSET, CONN_AUTH_AUTH,
4493-
gettext_noop("Encrypt passwords."),
4494-
gettext_noop("When a password is specified in CREATE USER or "
4495-
"ALTER USER without writing either ENCRYPTED or UNENCRYPTED, "
4496-
"this parameter determines whether the password is to be encrypted.")
4493+
gettext_noop("Chooses the algorithm for encrypting passwords."),
4494+
NULL
44974495
},
44984496
&Password_encryption,
44994497
PASSWORD_TYPE_MD5, password_encryption_options,

0 commit comments

Comments
 (0)