3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-25 09:39:25 +01:00

eap-tls-common: Fix typo

This commit is contained in:
Denis Kenzior 2018-12-05 11:55:00 -06:00
parent aafa4d50bb
commit 94b7a69146
2 changed files with 2 additions and 2 deletions

View File

@ -853,7 +853,7 @@ void eap_tls_common_set_completed(struct eap_state *eap)
eap_tls->method_completed = true; 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); struct eap_tls_state *eap_tls = eap_get_data(eap);

View File

@ -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_state_free(struct eap_state *eap);
void eap_tls_common_set_completed(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, void eap_tls_common_handle_request(struct eap_state *eap,
const uint8_t *pkt, size_t len); const uint8_t *pkt, size_t len);