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 | |
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)
-rw-r--r-- | usr.sbin/hostapd/hostapd.conf.5 | 10 | ||||
-rw-r--r-- | usr.sbin/hostapd/iapp.c | 6 | ||||
-rw-r--r-- | usr.sbin/mtrace/mtrace.c | 6 | ||||
-rw-r--r-- | usr.sbin/relayd/relayd.conf.5 | 10 | ||||
-rw-r--r-- | usr.sbin/smtpd/newaliases.8 | 6 | ||||
-rw-r--r-- | usr.sbin/snmpd/snmpd.conf.5 | 6 |
6 files changed, 22 insertions, 22 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. */ diff --git a/usr.sbin/mtrace/mtrace.c b/usr.sbin/mtrace/mtrace.c index 8807a203bcd..86148eb7211 100644 --- a/usr.sbin/mtrace/mtrace.c +++ b/usr.sbin/mtrace/mtrace.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mtrace.c,v 1.26 2007/02/18 21:16:03 jmc Exp $ */ +/* $OpenBSD: mtrace.c,v 1.27 2009/04/16 20:13:13 sobrado Exp $ */ /* $NetBSD: mtrace.c,v 1.5 1995/12/10 10:57:15 mycroft Exp $ */ /* @@ -53,7 +53,7 @@ #ifndef lint static char rcsid[] = - "@(#) $Id: mtrace.c,v 1.26 2007/02/18 21:16:03 jmc Exp $"; + "@(#) $Id: mtrace.c,v 1.27 2009/04/16 20:13:13 sobrado Exp $"; #endif #include <netdb.h> @@ -1155,7 +1155,7 @@ main(int argc, char *argv[]) break; } else goto usage; - case 'M': /* Use multicast for reponse */ + case 'M': /* Use multicast for response */ multicast = TRUE; break; case 'l': /* Loop updating stats indefinitely */ diff --git a/usr.sbin/relayd/relayd.conf.5 b/usr.sbin/relayd/relayd.conf.5 index 22e1e731086..1d550544e57 100644 --- a/usr.sbin/relayd/relayd.conf.5 +++ b/usr.sbin/relayd/relayd.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: relayd.conf.5,v 1.102 2009/04/02 14:30:51 reyk Exp $ +.\" $OpenBSD: relayd.conf.5,v 1.103 2009/04/16 20:13:13 sobrado Exp $ .\" .\" Copyright (c) 2006, 2007 Reyk Floeter <reyk@openbsd.org> .\" Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -15,7 +15,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: April 2 2009 $ +.Dd $Mdocdate: April 16 2009 $ .Dt RELAYD.CONF 5 .Os .Sh NAME @@ -306,7 +306,7 @@ This method will automatically use ICMP or ICMPV6 depending on the address family of each host. .It Ic check script Ar path Execute an external program to check the host state. -The program will be executed for each host by specifing the hostname +The program will be executed for each host by specifying the hostname on the command line: .Bd -literal -offset indent /usr/local/bin/checkload.pl front-www1.private.example.com @@ -373,7 +373,7 @@ TCP as the transport. This will override the global timeout, which is 200 milliseconds by default. .El .Pp -The following options will set the scheduling algoritm to select a +The following options will set the scheduling algorithm to select a host from the specified table: .Bl -tag -width Ds .It Ic mode hash @@ -926,7 +926,7 @@ See .Ic expect file Ar path for more information. .It Ic return error Op Ar option -Return an error reponse to the client if an internal operation or the +Return an error response to the client if an internal operation or the forward connection to the client failed. By default, the connection will be silently dropped. The effect of this option depends on the protocol: HTTP will send an diff --git a/usr.sbin/smtpd/newaliases.8 b/usr.sbin/smtpd/newaliases.8 index f070c12322b..74717d25bb7 100644 --- a/usr.sbin/smtpd/newaliases.8 +++ b/usr.sbin/smtpd/newaliases.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: newaliases.8,v 1.6 2009/03/23 21:48:40 jmc Exp $ +.\" $OpenBSD: newaliases.8,v 1.7 2009/04/16 20:13:13 sobrado Exp $ .\" .\" Copyright (c) 2009 Jacek Masiulaniec <jacekm@openbsd.org> .\" Copyright (c) 2008-2009 Gilles Chechade <gilles@openbsd.org> @@ -15,7 +15,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: March 23 2009 $ +.Dd $Mdocdate: April 16 2009 $ .Dt NEWALIASES 8 .Os .Sh NAME @@ -44,7 +44,7 @@ instead of the default .Pa /etc/mail/smtpd.conf . .El .Pp -Note: this utility is provided for sendmail compatibilty. +Note: this utility is provided for sendmail compatibility. The preferred way of rebuilding the database is with .Xr makemap 8 : .Bd -literal -offset indent diff --git a/usr.sbin/snmpd/snmpd.conf.5 b/usr.sbin/snmpd/snmpd.conf.5 index bcabeef55d8..080faadb3f5 100644 --- a/usr.sbin/snmpd/snmpd.conf.5 +++ b/usr.sbin/snmpd/snmpd.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: snmpd.conf.5,v 1.11 2008/11/04 22:17:57 sobrado Exp $ +.\" $OpenBSD: snmpd.conf.5,v 1.12 2009/04/16 20:13:13 sobrado Exp $ .\" .\" Copyright (c) 2007, 2008 Reyk Floeter <reyk@vantronix.net> .\" @@ -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: November 4 2008 $ +.Dd $Mdocdate: April 16 2009 $ .Dt SNMPD.CONF 5 .Os .Sh NAME @@ -118,7 +118,7 @@ Specify the authoritative identification of the local system. The default value is .Ar 1.3.6.1.4.1.30155.23.1 .Pq iso.org.dod.internet.private.enterprises.openbsd.23.1 -indentifying a common +identifying a common .Ox system. .Pp |