From 4a0a9b75350c29321a5b53178e53f7c5ab5869bf Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Wed, 28 Feb 2018 02:51:18 +0000 Subject: [PATCH] spelling: challenge --- src/Cedar/Radius.c | 4 ++-- src/Cedar/Radius.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Cedar/Radius.c b/src/Cedar/Radius.c index 34c0838c..5074e3c2 100644 --- a/src/Cedar/Radius.c +++ b/src/Cedar/Radius.c @@ -137,7 +137,7 @@ bool PeapClientSendMsChapv2AuthClientResponse(EAP_CLIENT *e, UCHAR *client_respo msg1.Chap_Id = e->MsChapV2Challenge.Chap_Id; msg1.Chap_Len = Endian16(54 + StrLen(e->Username)); msg1.Chap_ValueSize = 49; - Copy(msg1.Chap_PeerChallange, client_challenge, 16); + Copy(msg1.Chap_PeerChallenge, client_challenge, 16); Copy(msg1.Chap_NtResponse, client_response, 24); Copy(msg1.Chap_Name, e->Username, MIN(StrLen(e->Username), 255)); @@ -757,7 +757,7 @@ bool EapClientSendMsChapv2AuthClientResponse(EAP_CLIENT *e, UCHAR *client_respon eap1->Chap_Id = e->MsChapV2Challenge.Chap_Id; eap1->Chap_Len = Endian16(54 + StrLen(e->Username)); eap1->Chap_ValueSize = 49; - Copy(eap1->Chap_PeerChallange, client_challenge, 16); + Copy(eap1->Chap_PeerChallenge, client_challenge, 16); Copy(eap1->Chap_NtResponse, client_response, 24); Copy(eap1->Chap_Name, e->Username, MIN(StrLen(e->Username), 255)); diff --git a/src/Cedar/Radius.h b/src/Cedar/Radius.h index a2d0dde6..eaae6c38 100644 --- a/src/Cedar/Radius.h +++ b/src/Cedar/Radius.h @@ -234,7 +234,7 @@ struct EAP_MSCHAPV2_RESPONSE UCHAR Chap_Id; USHORT Chap_Len; UCHAR Chap_ValueSize; // = 49 - UCHAR Chap_PeerChallange[16]; + UCHAR Chap_PeerChallenge[16]; UCHAR Chap_Reserved[8]; UCHAR Chap_NtResponse[24]; UCHAR Chap_Flags;