ccdefops.c: Change the default ccache type under windows to be
authorTheodore Tso <tytso@mit.edu>
Wed, 31 Mar 1999 05:22:09 +0000 (05:22 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 31 Mar 1999 05:22:09 +0000 (05:22 +0000)
original FILE ccache type; this will get set to ccapi if the
krbcc32.dll can be found.

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

src/lib/krb5/ccache/ChangeLog
src/lib/krb5/ccache/ccdefops.c

index 273c0f6633128f4dde062efc19bd0a754072fb7f..4671dccf88600585d263b0041fae36dbdd7df61e 100644 (file)
@@ -1,3 +1,9 @@
+1999-03-31  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * ccdefops.c: Change the default ccache type under windows to be
+               original FILE ccache type; this will get set to ccapi if
+               the krbcc32.dll can be found.
+
 Mon Feb  8 21:53:37 1999  Theodore Y. Ts'o  <tytso@mit.edu>
 
        * Makefile.in: Enable the ccapi directory for windows builds.  
index 9c39f40f572242c3d358239989b2e4e5af87ee39..20081cc8e094640158cf291d39fd9aeaec156378 100644 (file)
 
 #include "k5-int.h"
 
-#if defined(macintosh) || defined(_MSDOS) || defined(_WIN32)
+#if defined(macintosh) 
 
-/* Macs and PCs use the shared, memory based credentials cache */
+/*
+ * Macs use the shared, memory based credentials cache
+ * Windows may also use the ccapi cache, but only if the Krbcc32.dll
+ * can be found; otherwise it falls back to using the old 
+ * file-based ccache.
+ */
 #include "stdcc.h" /* from ccapi subdir */
 
 krb5_cc_ops *krb5_cc_dfl_ops = &krb5_cc_stdcc_ops;