diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2020-06-10 11:57:41 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2020-06-10 11:57:41 +0200 |
commit | 5a4ada71a8f944600c348a6e4f5feb388ba8bd37 (patch) | |
tree | 1ada5f501a6e97fa8c1b202d884f4659e4d72e02 /src | |
parent | c5c000b1038e3037289806f7f29c203f05a2b1e3 (diff) | |
download | postgresql-5a4ada71a8f944600c348a6e4f5feb388ba8bd37.tar.gz postgresql-5a4ada71a8f944600c348a6e4f5feb388ba8bd37.zip |
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')
-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 2f3e0a70e00..17c15348efc 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -4729,10 +4729,8 @@ static struct config_enum ConfigureNamesEnum[] = { {"password_encryption", PGC_USERSET, CONN_AUTH_AUTH, - 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, |