diff options
author | Gordon Bergling <gbe@FreeBSD.org> | 2021-12-04 11:09:17 +0000 |
---|---|---|
committer | Gordon Bergling <gbe@FreeBSD.org> | 2021-12-07 18:55:44 +0000 |
commit | ef1e43df92c62c8f7ec88349f353a95fea192f2c (patch) | |
tree | e7eb824978fc7fc96ad2967ad1fdc84c35821f19 | |
parent | 1deee6222dc3a90fd054fa9878d8ee78749f6e6a (diff) | |
download | src-ef1e43df92c62c8f7ec88349f353a95fea192f2c.tar.gz src-ef1e43df92c62c8f7ec88349f353a95fea192f2c.zip |
net80211(4): Fix a typo in a sysctl description
- s/travelse/traversal/
(cherry picked from commit a9beea051171e19f3ea36febc84df55b3cd78d6b)
-rw-r--r-- | sys/net80211/ieee80211_hwmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211_hwmp.c b/sys/net80211/ieee80211_hwmp.c index 170ac57b21b2..5870fd070251 100644 --- a/sys/net80211/ieee80211_hwmp.c +++ b/sys/net80211/ieee80211_hwmp.c @@ -171,7 +171,7 @@ static int ieee80211_hwmp_net_diameter_traversaltime = -1; SYSCTL_PROC(_net_wlan_hwmp, OID_AUTO, net_diameter_traversal_time, CTLTYPE_INT | CTLFLAG_RW, &ieee80211_hwmp_net_diameter_traversaltime, 0, ieee80211_sysctl_msecs_ticks, "I", - "estimate travelse time across the MBSS (ms)"); + "estimate traversal time across the MBSS (ms)"); static int ieee80211_hwmp_roottimeout = -1; SYSCTL_PROC(_net_wlan_hwmp, OID_AUTO, roottimeout, CTLTYPE_INT | CTLFLAG_RW, &ieee80211_hwmp_roottimeout, 0, ieee80211_sysctl_msecs_ticks, "I", |