aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2020-06-10 11:57:41 +0200
committerPeter Eisentraut <peter@eisentraut.org>2020-06-10 13:40:52 +0200
commit92cc60ec08c6e9c3f2b2580a0a874bd96440b89d (patch)
treebe5c8efd4b889dfd099f5085984b2f52191e47c1 /src/backend
parentfd6daa006e7ba42c0f97fe852d83293e5e34d15c (diff)
downloadpostgresql-92cc60ec08c6e9c3f2b2580a0a874bd96440b89d.tar.gz
postgresql-92cc60ec08c6e9c3f2b2580a0a874bd96440b89d.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/backend')
-rw-r--r--src/backend/utils/misc/guc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index eca51a7c4eb..e58f12adba2 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -4150,10 +4150,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,