init_ctx.c (krb5_init_context): Pass the context to
authorTheodore Tso <tytso@mit.edu>
Thu, 13 May 1999 22:03:04 +0000 (22:03 +0000)
committerTheodore Tso <tytso@mit.edu>
Thu, 13 May 1999 22:03:04 +0000 (22:03 +0000)
kkrb5_win_ccdll_load so that it can register the FILE ccache type if
using ccapi (so that the FILE ccache type will always work).

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

src/lib/krb5/krb/ChangeLog
src/lib/krb5/krb/init_ctx.c

index efcdbf066abab52eab87dded0396044e94dcaa88..b798f3c948af623493eab78f164b444c2401a6b0 100644 (file)
@@ -1,3 +1,10 @@
+Thu May 13 17:31:34 1999  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * init_ctx.c (krb5_init_context): Pass the context to
+               kkrb5_win_ccdll_load so that it can register the FILE
+               ccache type if using ccapi (so that the FILE ccache type
+               will always work).
+
 Mon May 10 15:26:00 1999  Danilo Almeida  <dalmeida@mit.edu>
 
        * Makefile.in: Do win32 build in subdir.
index acd6c04e6ee1e5118dc8d07730aaf016fffbc896..a61bf708e44e5a7e07cef05ba9aa7680c50ed7a7 100644 (file)
@@ -55,7 +55,7 @@
 
 #if (defined(_MSDOS) || defined(_WIN32))
 extern krb5_error_code krb5_vercheck();
-extern void krb5_win_ccdll_load();
+extern void krb5_win_ccdll_load(krb5_context context);
 #endif
 
 KRB5_DLLIMP krb5_error_code KRB5_CALLCONV
@@ -72,7 +72,7 @@ krb5_init_context(context)
        krb5_init_ets(ctx);
 
 #if (defined(_MSDOS) || defined(_WIN32))
-       krb5_win_ccdll_load();  /* Load the krbcc32.dll if necessary */
+       krb5_win_ccdll_load(context);   /* Load the krbcc32.dll if necessary */
        /*
         * krb5_vercheck() is defined in win_glue.c, and this is
         * where we handle the timebomb and version server checks.