diff options
author | Bruce Momjian <bruce@momjian.us> | 2023-05-20 21:32:54 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2023-05-20 21:32:54 -0400 |
commit | 9c0a0e2ed92a1a94ec30d36f8ea1ab12c928292b (patch) | |
tree | f1eadcecb542a98733da2ed16ce311248686ba1e /src/backend/utils/init/postinit.c | |
parent | cf109ffc205063f82258e0643588491a153c3a45 (diff) | |
download | postgresql-9c0a0e2ed92a1a94ec30d36f8ea1ab12c928292b.tar.gz postgresql-9c0a0e2ed92a1a94ec30d36f8ea1ab12c928292b.zip |
rename "gss_accept_deleg" to "gss_accept_delegation".
This is more consistent with existing GUC spelling.
Discussion: https://postgr.es/m/ZGdnEsGtNj7+fZoa@momjian.us
Diffstat (limited to 'src/backend/utils/init/postinit.c')
-rw-r--r-- | src/backend/utils/init/postinit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index 88434c3e5d4..3359b34f527 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -285,14 +285,14 @@ PerformAuthentication(Port *port) _(" GSS (authenticated=%s, encrypted=%s, deleg_credentials=%s, principal=%s)"), be_gssapi_get_auth(port) ? _("yes") : _("no"), be_gssapi_get_enc(port) ? _("yes") : _("no"), - be_gssapi_get_deleg(port) ? _("yes") : _("no"), + be_gssapi_get_delegation(port) ? _("yes") : _("no"), princ); else appendStringInfo(&logmsg, _(" GSS (authenticated=%s, encrypted=%s, deleg_credentials=%s)"), be_gssapi_get_auth(port) ? _("yes") : _("no"), be_gssapi_get_enc(port) ? _("yes") : _("no"), - be_gssapi_get_deleg(port) ? _("yes") : _("no")); + be_gssapi_get_delegation(port) ? _("yes") : _("no")); } #endif |