NULL, meaning that the credentials shouldn't be stored in a
credentials cache.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6087
dc483132-0cff-0310-8789-
dd5450dbe970
+Fri Jun 16 22:11:21 1995 Theodore Y. Ts'o (tytso@dcl)
+
+ * get_in_tkt.c (krb5_get_in_tkt): Allow the credentials cache
+ argument to be optional; allow it to be NULL, meaning that
+ the credentials shouldn't be stored in a credentials cache.
Mon Jun 12 16:49:42 1995 Chris Provenzano (proven@mit.edu)
krb5_xfree(packet);
/* store it in the ccache! */
- if ((retval = krb5_cc_store_cred(context, ccache, creds)))
+ if (ccache) {
+ if ((retval = krb5_cc_store_cred(context, ccache, creds)))
goto cred_cleanup;
+ }
if (ret_as_reply) {
*ret_as_reply = as_reply;