new krb5_cc_cache_match

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@23905 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-10-13 03:03:21 +00:00
parent 203522c21a
commit fe1a976ae2
8 changed files with 48 additions and 11 deletions

View File

@@ -137,7 +137,6 @@ static OM_uint32 acquire_initiator_cred
if (handle->principal) {
kret = krb5_cc_cache_match (context,
handle->principal,
NULL,
&ccache);
if (kret == 0) {
ret = GSS_S_COMPLETE;

View File

@@ -84,7 +84,7 @@ get_ccache(krb5_context context, int *destroy, krb5_ccache *id)
if (ret)
goto out;
ret = krb5_cc_cache_match(context, principal, NULL, id);
ret = krb5_cc_cache_match(context, principal, id);
if (ret == 0)
return 0;