diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2010-04-28 10:57:27 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2010-04-28 10:57:27 +0000 |
commit | b7327995decf94e0a514d2e00db749b9df3edaa7 (patch) | |
tree | 68c4b3f480ec7dc276e10b71a2aa8405b437d5ae /sbin | |
parent | fc607a2e80dfeb125ae2fe83191d934929997047 (diff) | |
download | FreeBSD-src-b7327995decf94e0a514d2e00db749b9df3edaa7.zip FreeBSD-src-b7327995decf94e0a514d2e00db749b9df3edaa7.tar.gz |
Fix typos.
Obtained from: DragonFlyBSD
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ifconfig/ifconfig.8 | 4 | ||||
-rw-r--r-- | sbin/ifconfig/ifieee80211.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sbin/ifconfig/ifconfig.8 b/sbin/ifconfig/ifconfig.8 index eafd5d8..e26cbda 100644 --- a/sbin/ifconfig/ifconfig.8 +++ b/sbin/ifconfig/ifconfig.8 @@ -1163,9 +1163,9 @@ In particular the information elements included in management frames for old devices are different. When compatibility support is enabled both standard and compatible data will be provided. -Stations that associate using the compatiblity mechanisms are flagged +Stations that associate using the compatibility mechanisms are flagged in ``list sta''. -To disable compatiblity support use +To disable compatibility support use .Fl htcompat . .It Cm htprotmode Ar technique For interfaces operating in 802.11n, use the specified diff --git a/sbin/ifconfig/ifieee80211.c b/sbin/ifconfig/ifieee80211.c index 6cb4d2c..6ec45ff 100644 --- a/sbin/ifconfig/ifieee80211.c +++ b/sbin/ifconfig/ifieee80211.c @@ -5027,7 +5027,7 @@ DECL_CMD_FUNC(set80211clone_wlanaddr, arg, d) ea = ether_aton(arg); if (ea == NULL) - errx(1, "%s: cannot parse addres", arg); + errx(1, "%s: cannot parse address", arg); memcpy(params.icp_macaddr, ea->octet, IEEE80211_ADDR_LEN); params.icp_flags |= IEEE80211_CLONE_MACADDR; } |