From 0573c6b5fbaf44b39f7e6decd9a1f9c6d515f070 Mon Sep 17 00:00:00 2001 From: Andreas Henriksson Date: Sat, 4 Aug 2018 16:53:35 +0200 Subject: [PATCH] src: Fix spelling errors spotted by lintian The debian package checking tool lintian spotted a bunch of spelling errors in the built binaries. --- src/ap.c | 4 ++-- src/eap-tls.c | 2 +- src/eap-ttls.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ap.c b/src/ap.c index 1af67201..a75492fa 100644 --- a/src/ap.c +++ b/src/ap.c @@ -169,7 +169,7 @@ static bool ap_sta_match_addr(const void *a, const void *b) static void ap_remove_sta(struct sta_state *sta) { if (!l_queue_remove(sta->ap->sta_states, sta)) { - l_error("tried to remove station that doesnt exist"); + l_error("tried to remove station that doesn't exist"); return; } @@ -541,7 +541,7 @@ static void ap_fail_assoc_resp_cb(struct l_genl_msg *msg, void *user_data) l_error("AP (Re)Association Response with an error status not " "sent or not ACKed: %i", l_genl_msg_get_error(msg)); else - l_info("AP (Re)Association Response with an errror status " + l_info("AP (Re)Association Response with an error status " "delivered OK"); } diff --git a/src/eap-tls.c b/src/eap-tls.c index b952cf10..89e543bd 100644 --- a/src/eap-tls.c +++ b/src/eap-tls.c @@ -253,7 +253,7 @@ static void eap_tls_handle_request(struct eap_state *eap, if (!tls->rx_pkt_buf && (flags & EAP_TLS_FLAG_M)) { if (!(flags & EAP_TLS_FLAG_L)) { - l_error("EAP-TLS requst 1st fragment with no length"); + l_error("EAP-TLS request 1st fragment with no length"); goto err; } diff --git a/src/eap-ttls.c b/src/eap-ttls.c index 3524e621..14c60907 100644 --- a/src/eap-ttls.c +++ b/src/eap-ttls.c @@ -486,7 +486,7 @@ static void eap_ttls_handle_request(struct eap_state *eap, if (!ttls->rx_pkt_buf && (flags & EAP_TTLS_FLAG_M)) { if (!(flags & EAP_TTLS_FLAG_L)) { - l_error("EAP-TTLS requst 1st fragment with no length"); + l_error("EAP-TTLS request 1st fragment with no length"); goto err; }