diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2020-06-10 11:57:41 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2020-06-10 13:41:59 +0200 |
commit | de2d8be551434c1768dbc05e64f24bd9f394826c (patch) | |
tree | 8a777f1530b6ded73b0198fe144c76aacc87dd00 /src/backend/utils | |
parent | 20fd90febc2c2429a0340d476cccc6922f581305 (diff) |
Update description of parameter password_encryption
The previous description string still described the pre-PostgreSQL
10 (pre eb61136dc75a76caef8460fa939244d8593100f2) behavior of
selecting between encrypted and unencrypted, but it is now choosing
between encryption algorithms.
Diffstat (limited to 'src/backend/utils')
-rw-r--r-- | src/backend/utils/misc/guc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 5f019e611a7..454e6b1a384 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -3917,10 +3917,8 @@ static struct config_enum ConfigureNamesEnum[] = { {"password_encryption", PGC_USERSET, CONN_AUTH_SECURITY, - gettext_noop("Encrypt passwords."), - gettext_noop("When a password is specified in CREATE USER or " - "ALTER USER without writing either ENCRYPTED or UNENCRYPTED, " - "this parameter determines whether the password is to be encrypted.") + gettext_noop("Chooses the algorithm for encrypting passwords."), + NULL }, &Password_encryption, PASSWORD_TYPE_MD5, password_encryption_options, |