summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/krb5/krb/ChangeLog5
-rw-r--r--src/lib/krb5/krb/init_ctx.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/krb5/krb/ChangeLog b/src/lib/krb5/krb/ChangeLog
index b5d517def..7e0305c9f 100644
--- a/src/lib/krb5/krb/ChangeLog
+++ b/src/lib/krb5/krb/ChangeLog
@@ -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
diff --git a/src/lib/krb5/krb/init_ctx.c b/src/lib/krb5/krb/init_ctx.c
index 2285b0f42..acd6c04e6 100644
--- a/src/lib/krb5/krb/init_ctx.c
+++ b/src/lib/krb5/krb/init_ctx.c
@@ -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.