diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-11-09 20:13:59 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-11-09 20:13:59 +0000 |
commit | 60ddec86b1c51bd19cc8ff36709039a79f6feef3 (patch) | |
tree | 7d3e6213bde1ff868d674bf18ae492c68917bdfa /usr.bin/locate | |
parent | 6ba2859ff51745038306c59d4fe9eefe6f164aff (diff) |
Typos in comments from Jared Yanovich <jjy2+ at pitt dot edu>
Diffstat (limited to 'usr.bin/locate')
-rw-r--r-- | usr.bin/locate/code/locate.code.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/locate/code/locate.code.c b/usr.bin/locate/code/locate.code.c index 1d8bd0ce3b2..88ff28a87d5 100644 --- a/usr.bin/locate/code/locate.code.c +++ b/usr.bin/locate/code/locate.code.c @@ -1,5 +1,5 @@ /* - * $OpenBSD: locate.code.c,v 1.12 2003/09/29 16:03:16 deraadt Exp $ + * $OpenBSD: locate.code.c,v 1.13 2003/11/09 20:13:57 otto Exp $ * * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: locate.code.c,v 1.12 2003/09/29 16:03:16 deraadt Exp $ + * $Id: locate.code.c,v 1.13 2003/11/09 20:13:57 otto Exp $ */ #ifndef lint @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)locate.code.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: locate.code.c,v 1.12 2003/09/29 16:03:16 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: locate.code.c,v 1.13 2003/11/09 20:13:57 otto Exp $"; #endif #endif /* not lint */ @@ -81,7 +81,7 @@ static char rcsid[] = "$OpenBSD: locate.code.c,v 1.12 2003/09/29 16:03:16 deraad * The locate database store any character except newline ('\n') * and NUL ('\0'). The 8-bit character support don't wast extra * space until you have characters in file names less than 32 - * or greather than 127. + * or greater than 127. * * * SEE ALSO: updatedb.sh, ../bigram/locate.bigram.c |