summaryrefslogtreecommitdiff
path: root/usr.bin/env
diff options
context:
space:
mode:
authorjschauma <jschauma@NetBSD.org>2010-10-15 19:35:08 +0000
committerjschauma <jschauma@NetBSD.org>2010-10-15 19:35:08 +0000
commit40df9f7982f9b264ad9cde9087a6f499855fe2ec (patch)
treeb6d1809599983454ec7ae58ec5fbb2b0c457de82 /usr.bin/env
parentafeacd3b7c4bdae00e7f680048b964a1e3e98a8d (diff)
remove duplicate 'was' in a comment
Diffstat (limited to 'usr.bin/env')
-rw-r--r--usr.bin/env/env.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/env/env.c b/usr.bin/env/env.c
index d3edbed7401..19af3fb3e29 100644
--- a/usr.bin/env/env.c
+++ b/usr.bin/env/env.c
@@ -35,7 +35,7 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 1993, 1994\
#ifndef lint
/*static char sccsid[] = "@(#)env.c 8.3 (Berkeley) 4/2/94";*/
-__RCSID("$NetBSD: env.c,v 1.17 2008/07/21 14:19:22 lukem Exp $");
+__RCSID("$NetBSD: env.c,v 1.18 2010/10/15 19:35:08 jschauma Exp $");
#endif /* not lint */
#include <err.h>
@@ -77,7 +77,7 @@ main(int argc, char **argv)
if (*argv) {
/* return 127 if the command to be run could not be found; 126
- if the command was was found but could not be invoked */
+ if the command was found but could not be invoked */
execvp(*argv, argv);
err((errno == ENOENT) ? 127 : 126, "%s", *argv);