aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/krb
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1999-03-31 05:19:42 +0000
committerTheodore Tso <tytso@mit.edu>1999-03-31 05:19:42 +0000
commit2d72fab6730221dfd45077218b3e772a6e98e8bf (patch)
treec5218f5174109eac80b1cae04aa99f06f0159b34 /src/lib/krb5/krb
parent758fb74c311faa0631f98fca3ef63734e9b0204c (diff)
downloadkrb5-2d72fab6730221dfd45077218b3e772a6e98e8bf.zip
krb5-2d72fab6730221dfd45077218b3e772a6e98e8bf.tar.gz
krb5-2d72fab6730221dfd45077218b3e772a6e98e8bf.tar.bz2
init_ctx.c (krb5_init_context): Call krb5_win_ccdll_load() to load the
krbcc32.dll under windows. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11333 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/krb')
-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 b5d517d..7e0305c 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 2285b0f..acd6c04 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.