From: Theodore Tso Date: Wed, 31 Mar 1999 05:19:42 +0000 (+0000) Subject: init_ctx.c (krb5_init_context): Call krb5_win_ccdll_load() to load the X-Git-Tag: krb5-1.1-beta1~249 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2d72fab6730221dfd45077218b3e772a6e98e8bf;p=krb5.git 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 --- 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 + + * 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 * 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.