From 94b7a69146563ce2fa9f632bf1f0231a8f5f0282 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 5 Dec 2018 11:55:00 -0600 Subject: [PATCH] eap-tls-common: Fix typo --- src/eap-tls-common.c | 2 +- src/eap-tls-common.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/eap-tls-common.c b/src/eap-tls-common.c index cbaeca2e..5a757455 100644 --- a/src/eap-tls-common.c +++ b/src/eap-tls-common.c @@ -853,7 +853,7 @@ void eap_tls_common_set_completed(struct eap_state *eap) eap_tls->method_completed = true; } -void eap_tls_common_set_phase2_faild(struct eap_state *eap) +void eap_tls_common_set_phase2_failed(struct eap_state *eap) { struct eap_tls_state *eap_tls = eap_get_data(eap); diff --git a/src/eap-tls-common.h b/src/eap-tls-common.h index 731eba86..0bb074f1 100644 --- a/src/eap-tls-common.h +++ b/src/eap-tls-common.h @@ -53,7 +53,7 @@ bool eap_tls_common_state_reset(struct eap_state *eap); void eap_tls_common_state_free(struct eap_state *eap); void eap_tls_common_set_completed(struct eap_state *eap); -void eap_tls_common_set_phase2_faild(struct eap_state *eap); +void eap_tls_common_set_phase2_failed(struct eap_state *eap); void eap_tls_common_handle_request(struct eap_state *eap, const uint8_t *pkt, size_t len);