diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-09-06 09:15:35 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-09-06 09:15:35 +0200 |
commit | 5599f40d259a275d3202b10aa6ffb9a36fd8a940 (patch) | |
tree | 78117efada9a6c63889312a8e18e88d2e4b537d5 /src/interfaces/libpq/fe-gssapi-common.c | |
parent | 946647f845d0b0762656a8e07055f501c4b29688 (diff) | |
download | postgresql-5599f40d259a275d3202b10aa6ffb9a36fd8a940.tar.gz postgresql-5599f40d259a275d3202b10aa6ffb9a36fd8a940.zip |
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-gssapi-common.c')
-rw-r--r-- | src/interfaces/libpq/fe-gssapi-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-gssapi-common.c b/src/interfaces/libpq/fe-gssapi-common.c index f3735df1bfa..3c230e47a84 100644 --- a/src/interfaces/libpq/fe-gssapi-common.c +++ b/src/interfaces/libpq/fe-gssapi-common.c @@ -58,7 +58,7 @@ pg_GSS_error(const char *mprefix, PGconn *conn, * Check if we can acquire credentials at all (and yield them if so). */ bool -pg_GSS_have_ccache(gss_cred_id_t *cred_out) +pg_GSS_have_cred_cache(gss_cred_id_t *cred_out) { OM_uint32 major, minor; |