3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-04 02:18:49 +02:00

src: Fix spelling errors spotted by lintian

The debian package checking tool lintian spotted a bunch
of spelling errors in the built binaries.
This commit is contained in:
Andreas Henriksson 2018-08-04 16:53:35 +02:00 committed by Denis Kenzior
parent d4064ea1b6
commit 0573c6b5fb
3 changed files with 4 additions and 4 deletions

View File

@ -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) static void ap_remove_sta(struct sta_state *sta)
{ {
if (!l_queue_remove(sta->ap->sta_states, 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; 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 " l_error("AP (Re)Association Response with an error status not "
"sent or not ACKed: %i", l_genl_msg_get_error(msg)); "sent or not ACKed: %i", l_genl_msg_get_error(msg));
else else
l_info("AP (Re)Association Response with an errror status " l_info("AP (Re)Association Response with an error status "
"delivered OK"); "delivered OK");
} }

View File

@ -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 (!tls->rx_pkt_buf && (flags & EAP_TLS_FLAG_M)) {
if (!(flags & EAP_TLS_FLAG_L)) { 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; goto err;
} }

View File

@ -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 (!ttls->rx_pkt_buf && (flags & EAP_TTLS_FLAG_M)) {
if (!(flags & EAP_TTLS_FLAG_L)) { 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; goto err;
} }