Both Macintoshes and Windows use the ccapi as the default credentials
authorTheodore Tso <tytso@mit.edu>
Tue, 1 Sep 1998 19:39:26 +0000 (19:39 +0000)
committerTheodore Tso <tytso@mit.edu>
Tue, 1 Sep 1998 19:39:26 +0000 (19:39 +0000)
cache.

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

src/lib/krb5/ccache/ccdefops.c

index 180ce0e644410d1c3926ff5381be8b7d3a6146d1..9c39f40f572242c3d358239989b2e4e5af87ee39 100644 (file)
@@ -27,9 +27,9 @@
 
 #include "k5-int.h"
 
-#ifdef macintosh
+#if defined(macintosh) || defined(_MSDOS) || defined(_WIN32)
 
-/* Macs use the shared, memory based credentials cache */
+/* Macs and PCs use the shared, memory based credentials cache */
 #include "stdcc.h" /* from ccapi subdir */
 
 krb5_cc_ops *krb5_cc_dfl_ops = &krb5_cc_stdcc_ops;
@@ -51,4 +51,4 @@ krb5_cc_ops *krb5_cc_dfl_ops = &krb5_scc_ops;
 
 #endif
 
-#endif
\ No newline at end of file
+#endif