X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=mech_eap%2Futil_lucid.c;h=f9e9941f97561cbef5950ef41f455d2c6851f702;hb=b82514fd8d8df36f44b97974b7f685e692b323b8;hp=359058c1963acddec65ab11e7523fcf12a8fd967;hpb=3e2e6ed45efe1b7c70e96b262e2b4b8a3d4c42b7;p=mech_eap.git 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));