From b82514fd8d8df36f44b97974b7f685e692b323b8 Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Thu, 17 Nov 2011 22:15:47 +1100 Subject: [PATCH] NFSv4 patch from Daniel Kouril --- mech_eap/util_lucid.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/mech_eap/util_lucid.c b/mech_eap/util_lucid.c index 359058c..f9e9941 100644 --- a/mech_eap/util_lucid.c +++ b/mech_eap/util_lucid.c @@ -136,7 +136,10 @@ cleanup: lctx->version = 1; lctx->initiate = CTX_IS_INITIATOR(ctx); - lctx->endtime = ctx->expiryTime; + if (ctx->expiryTime == 0) + lctx->endtime = KRB_TIME_FOREVER; + else + lctx->endtime = ctx->expiryTime; lctx->send_seq = ctx->sendSeq; lctx->recv_seq = ctx->recvSeq; lctx->protocol = 1; @@ -144,8 +147,8 @@ cleanup: lctx->cfx_kd.have_acceptor_subkey = haveAcceptorSubkey; lkey = haveAcceptorSubkey - ? &lctx->cfx_kd.ctx_key - : &lctx->cfx_kd.acceptor_subkey; + ? &lctx->cfx_kd.acceptor_subkey + : &lctx->cfx_kd.ctx_key; lkey->type = KRB_KEY_TYPE(&ctx->rfc3961Key); lkey->data = GSSEAP_MALLOC(KRB_KEY_LENGTH(&ctx->rfc3961Key)); -- 2.1.4