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:40:43 +0200 |
commit | 17d8cf2897443874fb66d2e4895a049cf961ec58 (patch) | |
tree | 2d37100c7b9e280f37c6d004d50d9fe3f2455c53 | |
parent | 980a3cd48a08689f0526a7ed0537899e155bd9f4 (diff) | |
download | postgresql-17d8cf2897443874fb66d2e4895a049cf961ec58.tar.gz postgresql-17d8cf2897443874fb66d2e4895a049cf961ec58.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.
-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 a70e79c4891..01e870e4e5e 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -4490,10 +4490,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, |