mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
libpq: ccache -> credential cache
The term "ccache" is overloaded. Let's be more clear, in case someone other than a Kerberos wizard has to read this code.
This commit is contained in:
@ -2747,13 +2747,13 @@ keep_going: /* We will come back to here until there is
|
||||
#ifdef ENABLE_GSS
|
||||
|
||||
/*
|
||||
* If GSSAPI is enabled and we have a ccache, try to set it up
|
||||
* before sending startup messages. If it's already
|
||||
* If GSSAPI is enabled and we have a credential cache, try to
|
||||
* set it up before sending startup messages. If it's already
|
||||
* operating, don't try SSL and instead just build the startup
|
||||
* packet.
|
||||
*/
|
||||
if (conn->try_gss && !conn->gctx)
|
||||
conn->try_gss = pg_GSS_have_ccache(&conn->gcred);
|
||||
conn->try_gss = pg_GSS_have_cred_cache(&conn->gcred);
|
||||
if (conn->try_gss && !conn->gctx)
|
||||
{
|
||||
ProtocolVersion pv = pg_hton32(NEGOTIATE_GSS_CODE);
|
||||
@ -2773,7 +2773,7 @@ keep_going: /* We will come back to here until there is
|
||||
else if (!conn->gctx && conn->gssencmode[0] == 'r')
|
||||
{
|
||||
appendPQExpBuffer(&conn->errorMessage,
|
||||
libpq_gettext("GSSAPI encryption required, but was impossible (possibly no ccache, no server support, or using a local socket)\n"));
|
||||
libpq_gettext("GSSAPI encryption required, but was impossible (possibly no credential cache, no server support, or using a local socket)\n"));
|
||||
goto error_return;
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user