git: 94fc800f5bf2 - main - net80211: Fix two typos in kernel messages
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 19 Feb 2024 11:08:20 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=94fc800f5bf20f573bef0d407c2f61ebcdc15bae
commit 94fc800f5bf20f573bef0d407c2f61ebcdc15bae
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-02-19 11:08:07 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-02-19 11:08:07 +0000
net80211: Fix two typos in kernel messages
- s/defered/deferred/
MFC after: 5 days
---
sys/net80211/ieee80211_hostap.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/net80211/ieee80211_hostap.c b/sys/net80211/ieee80211_hostap.c
index 67c45bd38935..82d8f8b2907b 100644
--- a/sys/net80211/ieee80211_hostap.c
+++ b/sys/net80211/ieee80211_hostap.c
@@ -974,7 +974,7 @@ hostap_auth_open(struct ieee80211_node *ni, struct ieee80211_frame *wh,
*/
IEEE80211_NOTE_MAC(vap,
IEEE80211_MSG_AUTH | IEEE80211_MSG_ACL, ni->ni_macaddr,
- "%s", "station authentication defered (radius acl)");
+ "%s", "station authentication deferred (radius acl)");
ieee80211_notify_node_auth(ni);
} else {
IEEE80211_SEND_MGMT(ni, IEEE80211_FC0_SUBTYPE_AUTH, seq + 1);
@@ -1124,7 +1124,7 @@ hostap_auth_shared(struct ieee80211_node *ni, struct ieee80211_frame *wh,
IEEE80211_NOTE_MAC(vap,
IEEE80211_MSG_AUTH | IEEE80211_MSG_ACL,
ni->ni_macaddr,
- "%s", "station authentication defered (radius acl)");
+ "%s", "station authentication deferred (radius acl)");
ieee80211_notify_node_auth(ni);
return;
}