diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2009-04-16 20:13:14 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2009-04-16 20:13:14 +0000 |
commit | 8452b2bf4fcc3d8f32d2d4e291bbc6dad7edf770 (patch) | |
tree | d37d87db2489845e5ffbb06059033a1cff0b8e49 /usr.sbin/hostapd | |
parent | f1afa167968d41d3e1f4e207258ae903ea8e6170 (diff) |
fix a few more typos found by spell(1); rectify a double "with" pointed out
by jmc@ while looking at this diff.
ok jmc@, reyk@ (for the hostapd part)
Diffstat (limited to 'usr.sbin/hostapd')
-rw-r--r-- | usr.sbin/hostapd/hostapd.conf.5 | 10 | ||||
-rw-r--r-- | usr.sbin/hostapd/iapp.c | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/usr.sbin/hostapd/hostapd.conf.5 b/usr.sbin/hostapd/hostapd.conf.5 index dd50e96beaf..6bdef319c6f 100644 --- a/usr.sbin/hostapd/hostapd.conf.5 +++ b/usr.sbin/hostapd/hostapd.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: hostapd.conf.5,v 1.36 2007/05/31 19:20:24 jmc Exp $ +.\" $OpenBSD: hostapd.conf.5,v 1.37 2009/04/16 20:13:13 sobrado Exp $ .\" .\" Copyright (c) 2004, 2005, 2006 Reyk Floeter <reyk@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: May 31 2007 $ +.Dd $Mdocdate: April 16 2009 $ .Dt HOSTAPD.CONF 5 .Os .Sh NAME @@ -698,7 +698,7 @@ hostap handle skip type management subtype ! beacon \e with log \e rate 100 / 10 sec -# Log rogue accesspoints via IAPP, limited to every second, +# Log rogue access points via IAPP, limited to every second, # and skip further IAPP processing. hostap handle skip type management subtype beacon bssid !<myess> \e with iapp type radiotap limit 1 sec @@ -709,7 +709,7 @@ hostap handle type data bssid !<myess> with frame type management \e from &bssid to &from bssid &bssid # Send authentication requests from random station addresses to -# rogue accesspoints. This is a common way to test the quality of +# rogue access points. This is a common way to test the quality of # various hostap implementations. hostap handle skip type management subtype beacon bssid <pentest> \e with frame type management subtype auth \e @@ -722,7 +722,7 @@ hostap handle on ath0 type management subtype auth with resend hostap handle type management subtype auth from <blacklist> \e with node delete &from -# Log rogue accesspoints with a strong signal quality on +# Log rogue access points with a strong signal quality on # channel 3 (2.422GHz) transmitting frames with 1Mb. hostap handle type management subtype beacon bssid !<myess> \e signal >= 50% txrate 1Mb freq 2.422GHz \e diff --git a/usr.sbin/hostapd/iapp.c b/usr.sbin/hostapd/iapp.c index 9354e5e9079..308fbd813cc 100644 --- a/usr.sbin/hostapd/iapp.c +++ b/usr.sbin/hostapd/iapp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iapp.c,v 1.17 2007/02/08 11:15:55 reyk Exp $ */ +/* $OpenBSD: iapp.c,v 1.18 2009/04/16 20:13:13 sobrado Exp $ */ /* * Copyright (c) 2004, 2005 Reyk Floeter <reyk@openbsd.org> @@ -95,7 +95,7 @@ hostapd_iapp_add_notify(struct hostapd_apme *apme, struct hostapd_node *node) return (0); /* - * Send an ADD.notify message to other accesspoints to notify + * Send an ADD.notify message to other access points to notify * about a new association on our Host AP. */ bzero(&frame, sizeof(frame)); @@ -142,7 +142,7 @@ hostapd_iapp_radiotap(struct hostapd_apme *apme, u_int8_t *buf, struct iovec iov[2]; /* - * Send an HOSTAPD.pcap/radiotap message to other accesspoints with + * Send an HOSTAPD.pcap/radiotap message to other access points * with an appended network dump. This is an hostapd extension to * IAPP. */ |