2000-5-19 Alexandra Ellwood <lxs@mit.edu>
authorAlexandra Ellwood <lxs@mit.edu>
Fri, 19 May 2000 22:23:22 +0000 (22:23 +0000)
committerAlexandra Ellwood <lxs@mit.edu>
Fri, 19 May 2000 22:23:22 +0000 (22:23 +0000)
* acquire_cred.c: Changed to use krb5int_cc_default.  This function
supports the Kerberos Login Library and pops up a dialog if the cache does
not contain valid tickets.  This is used to automatically get a tgt before
obtaining service tickets.  Note that this should be an internal function
because callers don't expect krb5_cc_default to pop up a dialog!
(We found this out the hard way :-)

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12293 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/gssapi/krb5/ChangeLog
src/lib/gssapi/krb5/acquire_cred.c

index 81be5ee0eb5acd7ba71cf441fd99fc7bab29f4d8..5d9d3b83d50775ff576813ffb779181d526e2e0e 100644 (file)
@@ -1,3 +1,12 @@
+2000-5-19      Alexandra Ellwood <lxs@mit.edu>
+
+       * acquire_cred.c: Changed to use krb5int_cc_default.  This function 
+       supports the Kerberos Login Library and pops up a dialog if the cache does 
+       not contain valid tickets.  This is used to automatically get a tgt before
+       obtaining service tickets.  Note that this should be an internal function
+       because callers don't expect krb5_cc_default to pop up a dialog!
+       (We found this out the hard way :-)
+
 2000-04-08  Tom Yu  <tlyu@mit.edu>
 
        * wrap_size_limit.c (krb5_gss_wrap_size_limit): Fix up
index b67eb4f8f82a169eeee83eb95ac8c28304d55c7a..78e8c29dc1ab65df8d7571def085ffa585ececc7 100644 (file)
@@ -154,7 +154,7 @@ acquire_init_cred(context, minor_status, desired_name, output_princ, cred)
 
    /* open the default credential cache */
 
-   if ((code = krb5_cc_default(context, &ccache))) {
+   if ((code = krb5int_cc_default(context, &ccache))) {
       *minor_status = code;
       return(GSS_S_CRED_UNAVAIL);
    }