Tue Aug 11 23:38:53 1998 Matthew D Hancher <mdh@mit.edu>
authorMatthew Hancher <mdh@mit.edu>
Wed, 12 Aug 1998 03:41:07 +0000 (03:41 +0000)
committerMatthew Hancher <mdh@mit.edu>
Wed, 12 Aug 1998 03:41:07 +0000 (03:41 +0000)
* klist.c (do_ccache): Properly check the return value of
krb5_cc_set_flags() so the right thing happens if there is no CC.

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

src/clients/klist/ChangeLog
src/clients/klist/klist.c

index e09e58ad3dbf8096e2b17589724647ec1176bb39..3150210e4cb385e0367bf584061c064463ebe44f 100644 (file)
@@ -1,3 +1,8 @@
+Tue Aug 11 23:38:53 1998  Matthew D Hancher  <mdh@mit.edu>
+
+       * klist.c (do_ccache): Properly check the return value of
+       krb5_cc_set_flags() so the right thing happens if there is no CC.
+       
 Mon Mar 30 17:08:07 1998  Ezra Peisach  <epeisach@kangaroo.mit.edu>
 
        * klist.c (main): Exit with a 0 exit status if everything okay
index c19efe0c1fbd01dd48f220ae855efebf8470bedc..6d05f822d644235fc05af5de0c5d909caa095552 100644 (file)
@@ -276,7 +276,7 @@ void do_ccache(name)
  
     flags = 0;                         /* turns off OPENCLOSE mode */
     if ((code = krb5_cc_set_flags(kcontext, cache, flags))) {
-       if (code == ENOENT) {
+       if (code == KRB5_FCC_NOFILE) {
            if (!status_only)
                com_err(progname, code, "(ticket cache %s)",
                        krb5_cc_get_name(kcontext, cache));