init_ctx.c (krb5_init_context): Call krb5_win_ccdll_load() to load the
authorTheodore Tso <tytso@mit.edu>
Wed, 31 Mar 1999 05:19:42 +0000 (05:19 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 31 Mar 1999 05:19:42 +0000 (05:19 +0000)
krbcc32.dll under windows.

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

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

index b5d517defca10f57c5900f5e7389cf64927d0b6b..7e0305c9f99f6b0ff9ce1d58fd26925f4db4ac49 100644 (file)
@@ -1,3 +1,8 @@
+1999-03-31  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * init_ctx.c (krb5_init_context): Call krb5_win_ccdll_load() to
+               load the krbcc32.dll under windows.
+
 Mon Mar  8 22:39:01 1999  Tom Yu  <tlyu@mit.edu>
 
        * sendauth.c (krb5_sendauth): Set credspout to NULL if it's
index 2285b0f4213c8d18ecf5f4a8a6c875ffea6c3e52..acd6c04e6ee1e5118dc8d07730aaf016fffbc896 100644 (file)
@@ -55,6 +55,7 @@
 
 #if (defined(_MSDOS) || defined(_WIN32))
 extern krb5_error_code krb5_vercheck();
+extern void krb5_win_ccdll_load();
 #endif
 
 KRB5_DLLIMP krb5_error_code KRB5_CALLCONV
@@ -71,6 +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_vercheck() is defined in win_glue.c, and this is
         * where we handle the timebomb and version server checks.