diff options
author | David Krause <david@cvs.openbsd.org> | 2007-08-02 03:23:38 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2007-08-02 03:23:38 +0000 |
commit | f4ea642d39d43e3bd25f1f615633028f05270bbf (patch) | |
tree | 5484821995d28a3fd0802448b7820a8a66062271 /distrib | |
parent | 3363afb97aeb81088e2487d90f0bc87084b339a8 (diff) |
spelling fixes in the comments
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/miniroot/install.sub | 6 | ||||
-rw-r--r-- | distrib/special/more/more.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 7d213381b62..5645bec7c69 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.420 2007/07/27 01:34:32 deraadt Exp $ +# $OpenBSD: install.sub,v 1.421 2007/08/02 03:23:37 david Exp $ # $NetBSD: install.sub,v 1.5.2.8 1996/09/02 23:25:02 pk Exp $ # # Copyright (c) 1997-2007 Todd Miller, Theo de Raadt, Ken Westerback @@ -988,7 +988,7 @@ __EOT # # *NOTE* # 1) quotes around $1 are required to preserve trailing or -# embeddded blanks in usercodes and passwords. +# embedded blanks in usercodes and passwords. # 2) substitute '%' FIRST so it doesn't eliminate '%' chars we insert. encode_for_url() { echo "$1" | sed -e " @@ -1058,7 +1058,7 @@ install_url() { ask_yn "Display the list of known $_url_type servers?" if [[ $resp == y ]]; then # ftp.openbsd.org == 129.128.5.191 and will remain at - # that address for the forseeable future. + # that address for the foreseeable future. echo -n "Getting the list from 129.128.5.191 (ftp.openbsd.org)..." ftp $_ftp_active -V -a -o - \ ftp://129.128.5.191/$FTPDIR/ftplist 2>/tmp/ftplisterr \ diff --git a/distrib/special/more/more.c b/distrib/special/more/more.c index e7b50beb3d6..6edcead0cf5 100644 --- a/distrib/special/more/more.c +++ b/distrib/special/more/more.c @@ -1,4 +1,4 @@ -/* $OpenBSD: more.c,v 1.26 2004/07/02 12:59:44 millert Exp $ */ +/* $OpenBSD: more.c,v 1.27 2007/08/02 03:23:37 david Exp $ */ /* * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> @@ -58,7 +58,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "@(#)more.c 5.28 (Berkeley) 3/1/93"; #else -static const char rcsid[] = "$OpenBSD: more.c,v 1.26 2004/07/02 12:59:44 millert Exp $"; +static const char rcsid[] = "$OpenBSD: more.c,v 1.27 2007/08/02 03:23:37 david Exp $"; #endif #endif /* not lint */ @@ -1239,7 +1239,7 @@ do_shell(char *filename) } /* - * Search for nth ocurrence of regular expression contained in buf in the file + * Search for nth occurrence of regular expression contained in buf in the file */ int search(char *buf, FILE *file, int n) |