summaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-connect.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2019-09-06 09:15:35 +0200
committerPeter Eisentraut <peter@eisentraut.org>2019-09-06 09:15:35 +0200
commit5599f40d259a275d3202b10aa6ffb9a36fd8a940 (patch)
tree78117efada9a6c63889312a8e18e88d2e4b537d5 /src/interfaces/libpq/fe-connect.c
parent946647f845d0b0762656a8e07055f501c4b29688 (diff)
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.
Diffstat (limited to 'src/interfaces/libpq/fe-connect.c')
-rw-r--r--src/interfaces/libpq/fe-connect.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c
index 9a5aa1a3c5f..4fe871406c7 100644
--- a/src/interfaces/libpq/fe-connect.c
+++ b/src/interfaces/libpq/fe-connect.c
@@ -2748,13 +2748,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);
@@ -2774,7 +2774,7 @@ keep_going: /* We will come back to here until there is
else if (!conn->gctx && conn->gssencmode[0] == 'r')
{
appendPQExpBufferStr(&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