We shouldn't try to use the CCache API on Unix systems. (The maze of
authorTheodore Tso <tytso@mit.edu>
Sat, 26 Sep 1998 02:34:56 +0000 (02:34 +0000)
committerTheodore Tso <tytso@mit.edu>
Sat, 26 Sep 1998 02:34:56 +0000 (02:34 +0000)
#ifdef's was confusing.)

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

src/lib/krb5/os/ChangeLog
src/lib/krb5/os/ccdefname.c

index 48beadbf83a83100d1e9ac37b7678cf839a8db27..0ee4a7192f678aa4bec9985885730b3b77c14239 100644 (file)
@@ -1,3 +1,8 @@
+Fri Sep 25 22:32:16 1998  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * ccdefname.c: We shouldn't try to use the CCache API on Unix
+               systems.  (The maze of #ifdef's was confusing.)
+
 Tue Sep  1 15:44:11 1998  Theodore Y. Ts'o  <tytso@mit.edu>
 
        * ccdefname.c (krb5_cc_default_name): Changed the PC version to
index 0f90135acc66ea8d4f44d2b93cde86f961370336..d782f94bed6a002cf18c09a8e3103279b1bc10bd 100644 (file)
@@ -152,8 +152,8 @@ krb5_cc_default_name(context)
 #endif
        }
 #else
-       sprintf(name_buf, "API:default_cache_name");
-       //sprintf(name_buf, "FILE:/tmp/krb5cc_%d", getuid());
+       /* Default for Unix systems */
+       sprintf(name_buf, "FILE:/tmp/krb5cc_%d", getuid());
 #endif
 #endif
        name = name_buf;