X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mech_eap.git;a=blobdiff_plain;f=mech_eap%2Fwrap.c;h=181bbb0c2eaf21da88f6523401642309b715464c;hp=e0f20b83e9c485d6c5c4f4a0658b46dbdf512038;hb=HEAD;hpb=93039967aef783f03da45076109db8bbb0e7d7b0 diff --git a/mech_eap/wrap.c b/mech_eap/wrap.c index e0f20b8..181bbb0 100644 --- a/mech_eap/wrap.c +++ b/mech_eap/wrap.c @@ -38,7 +38,11 @@ OM_uint32 GSSAPI_CALLCONV gss_wrap(OM_uint32 *minor, +#ifdef HAVE_HEIMDAL_VERSION + gss_const_ctx_id_t ctx, +#else gss_ctx_id_t ctx, +#endif int conf_req_flag, gss_qop_t qop_req, gss_buffer_t input_message_buffer, @@ -54,7 +58,7 @@ gss_wrap(OM_uint32 *minor, *minor = 0; - GSSEAP_MUTEX_LOCK(&ctx->mutex); + GSSEAP_MUTEX_LOCK(&((gss_ctx_id_t)ctx)->mutex); if (!CTX_IS_ESTABLISHED(ctx)) { major = GSS_S_NO_CONTEXT; @@ -62,14 +66,14 @@ gss_wrap(OM_uint32 *minor, goto cleanup; } - major = gssEapWrap(minor, ctx, conf_req_flag, qop_req, - input_message_buffer, + major = gssEapWrap(minor, (gss_ctx_id_t)ctx, conf_req_flag, + qop_req, input_message_buffer, conf_state, output_message_buffer); if (GSS_ERROR(major)) goto cleanup; cleanup: - GSSEAP_MUTEX_UNLOCK(&ctx->mutex); + GSSEAP_MUTEX_UNLOCK(&((gss_ctx_id_t)ctx)->mutex); return major; }