* acquire_cred.c: (acquire_init_cred)
If the leash32.dll is not available, fallback to opening the
default credential cache even when the desired_name is
provided.
ticket: new
tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17704
dc483132-0cff-0310-8789-
dd5450dbe970
+2006-03-07 Jeffrey Altman <jaltman@mit.edu>
+
+ * acquire_cred.c: (acquire_init_cred)
+ If the leash32.dll is not available, fallback to opening the
+ default credential cache even when the desired_name is
+ provided.
+
2005-11-14 Jeffrey Altman <jaltman@mit.edu>
* gssapi_krb5.hin: include k5-int.h instead of krb5.h
*minor_status = code;
return(GSS_S_CRED_UNAVAIL);
}
+ } else {
+ /* leash dll not available, open the default credential cache */
+
+ if ((code = krb5int_cc_default(context, &ccache))) {
+ *minor_status = code;
+ return(GSS_S_CRED_UNAVAIL);
+ }
}
#endif /* USE_LEASH */
} else