From 9bd2145f6074d2e70d46dceb7b933ae6c06c63ea Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 28 Feb 2018 03:41:47 +0000 Subject: [PATCH] spelling: expired --- src/Cedar/Protocol.c | 4 ++-- src/Cedar/Protocol.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Cedar/Protocol.c b/src/Cedar/Protocol.c index eb6c174b..bbb5ce8a 100644 --- a/src/Cedar/Protocol.c +++ b/src/Cedar/Protocol.c @@ -4618,7 +4618,7 @@ void ClientCheckServerCertThread(THREAD *thread, void *param) NoticeThreadInit(thread); // Query for the selection to the user - p->Ok = p->CheckCertProc(p->Connection->Session, p->Connection, p->ServerX, &p->Exipred); + p->Ok = p->CheckCertProc(p->Connection->Session, p->Connection, p->ServerX, &p->Expired); p->UserSelected = true; } @@ -4764,7 +4764,7 @@ bool ClientCheckServerCert(CONNECTION *c, bool *expired) if (expired != NULL) { - *expired = p->Exipred; + *expired = p->Expired; } ret = p->Ok; diff --git a/src/Cedar/Protocol.h b/src/Cedar/Protocol.h index 9190bc7a..db7460c1 100644 --- a/src/Cedar/Protocol.h +++ b/src/Cedar/Protocol.h @@ -121,7 +121,7 @@ struct CHECK_CERT_THREAD_PROC X *ServerX; CHECK_CERT_PROC *CheckCertProc; bool UserSelected; - bool Exipred; + bool Expired; bool Ok; };