Module Name: src
Committed By: jschauma
Date: Fri Oct 15 19:35:09 UTC 2010
Modified Files:
src/usr.bin/env: env.c
Log Message:
remove duplicate 'was' in a comment
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/usr.bin/env/env.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/env/env.c
diff -u src/usr.bin/env/env.c:1.17 src/usr.bin/env/env.c:1.18
--- src/usr.bin/env/env.c:1.17 Mon Jul 21 14:19:22 2008
+++ src/usr.bin/env/env.c Fri Oct 15 19:35:08 2010
@@ -35,7 +35,7 @@
#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 @@
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);