summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorniallo <niallo@openbsd.org>2005-06-25 17:00:35 +0000
committerniallo <niallo@openbsd.org>2005-06-25 17:00:35 +0000
commit4d0ee871b9204d4ee030f0dcad60078371fe7d26 (patch)
tree207404bc962523deed441b642058e03413e7c7ff
parentMake the name2id/id2name code generically usable. This will be needed by (diff)
downloadwireguard-openbsd-4d0ee871b9204d4ee030f0dcad60078371fe7d26.tar.xz
wireguard-openbsd-4d0ee871b9204d4ee030f0dcad60078371fe7d26.zip
Fix typo in a comment.
ok jmc@
-rw-r--r--usr.bin/look/look.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/look/look.c b/usr.bin/look/look.c
index c7dd177a0f7..372e53e68a7 100644
--- a/usr.bin/look/look.c
+++ b/usr.bin/look/look.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: look.c,v 1.10 2003/06/10 22:20:47 deraadt Exp $ */
+/* $OpenBSD: look.c,v 1.11 2005/06/25 17:00:35 niallo Exp $ */
/* $NetBSD: look.c,v 1.7 1995/08/31 22:41:02 jtc Exp $ */
/*-
@@ -43,7 +43,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)look.c 8.2 (Berkeley) 5/4/95";
#endif
-static char rcsid[] = "$OpenBSD: look.c,v 1.10 2003/06/10 22:20:47 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: look.c,v 1.11 2005/06/25 17:00:35 niallo Exp $";
#endif /* not lint */
/*
@@ -154,7 +154,7 @@ look(char *string, char *front, char *back)
int ch;
char *readp, *writep;
- /* Reformat string string to avoid doing it multiple times later. */
+ /* Reformat string to avoid doing it multiple times later. */
for (readp = writep = string; ch = *readp++;) {
if (fflag)
ch = FOLD(ch);