Skip to content

Commit de2d8be

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 20fd90f commit de2d8be

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
@@ -3917,10 +3917,8 @@ static struct config_enum ConfigureNamesEnum[] =
39173917

39183918
{
39193919
{"password_encryption", PGC_USERSET, CONN_AUTH_SECURITY,
3920-
gettext_noop("Encrypt passwords."),
3921-
gettext_noop("When a password is specified in CREATE USER or "
3922-
"ALTER USER without writing either ENCRYPTED or UNENCRYPTED, "
3923-
"this parameter determines whether the password is to be encrypted.")
3920+
gettext_noop("Chooses the algorithm for encrypting passwords."),
3921+
NULL
39243922
},
39253923
&Password_encryption,
39263924
PASSWORD_TYPE_MD5, password_encryption_options,

0 commit comments

Comments
 (0)