aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/krb/init_ctx.c
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1999-05-13 22:03:04 +0000
committerTheodore Tso <tytso@mit.edu>1999-05-13 22:03:04 +0000
commit0940f3b9980f0e44f2baeecedcaeadb15dd05e6f (patch)
tree66dc1dd9b5c8b765a12df96b272826ebec7d4e88 /src/lib/krb5/krb/init_ctx.c
parent833740fd62b9d9f866bb2daaa5405b9236ba229c (diff)
downloadkrb5-0940f3b9980f0e44f2baeecedcaeadb15dd05e6f.zip
krb5-0940f3b9980f0e44f2baeecedcaeadb15dd05e6f.tar.gz
krb5-0940f3b9980f0e44f2baeecedcaeadb15dd05e6f.tar.bz2
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). git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11440 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/krb/init_ctx.c')
-rw-r--r--src/lib/krb5/krb/init_ctx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/krb5/krb/init_ctx.c b/src/lib/krb5/krb/init_ctx.c
index acd6c04..a61bf70 100644
--- a/src/lib/krb5/krb/init_ctx.c
+++ b/src/lib/krb5/krb/init_ctx.c
@@ -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.