From 166296e210d3cecbe24da0c7947b443f81cf36ff Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Tue, 29 Mar 2011 09:46:01 +1100 Subject: [PATCH] fix a few compile nits --- mech_eap/export_sec_context.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mech_eap/export_sec_context.c b/mech_eap/export_sec_context.c index 91f032f..1426d62 100644 --- a/mech_eap/export_sec_context.c +++ b/mech_eap/export_sec_context.c @@ -143,7 +143,7 @@ gssEapExportSecContext(OM_uint32 *minor, */ if (!CTX_IS_INITIATOR(ctx) && !CTX_IS_ESTABLISHED(ctx) && (ctx->flags & CTX_FLAG_KRB_REAUTH) == 0) { - major = gssEapExportPartialContext(minor, ctx, &partialCtx); + major = exportPartialRadiusContext(minor, ctx, &partialCtx); if (GSS_ERROR(major)) goto cleanup; } @@ -194,7 +194,7 @@ gssEapExportSecContext(OM_uint32 *minor, goto cleanup; if (!CTX_IS_INITIATOR(ctx) && !CTX_IS_ESTABLISHED(ctx)) - p = store_buffer(&ctx->conversation, &p, FALSE); + p = store_buffer(&ctx->conversation, p, FALSE); if (partialCtx.value != NULL) p = store_buffer(&partialCtx, p, FALSE); -- 2.1.4