aboutsummaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorGarance A Drosehn <gad@FreeBSD.org>2005-06-21 19:38:26 +0000
committerGarance A Drosehn <gad@FreeBSD.org>2005-06-21 19:38:26 +0000
commit2f739d3c1a5d04f090228cf56c5cc68a9ac101f1 (patch)
treea3f404b8c239eeb42e3c225b57fce4d6029b7a39 /usr.bin
parentb6c9debcf0adaaa43918919024752f2a0137055d (diff)
Notes
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/env/env.16
-rw-r--r--usr.bin/env/env.c3
2 files changed, 2 insertions, 7 deletions
diff --git a/usr.bin/env/env.1 b/usr.bin/env/env.1
index 9316175e11541..8a1467aa96b08 100644
--- a/usr.bin/env/env.1
+++ b/usr.bin/env/env.1
@@ -445,11 +445,7 @@ utility does not handle values of
.Ar utility
which have an equals sign
.Pq Ql =
-in their name (for obvious reasons), unless the
-.Ar utility
-name begins with a
-.Ql /
-character.
+in their name, for obvious reasons.
.Pp
The
.Nm
diff --git a/usr.bin/env/env.c b/usr.bin/env/env.c
index 56c671b2afa85..815976fe5f7af 100644
--- a/usr.bin/env/env.c
+++ b/usr.bin/env/env.c
@@ -102,8 +102,7 @@ main(int argc, char **argv)
if (env_verbosity)
fprintf(stderr, "#env clearing environ\n");
}
- for (argv += optind; *argv && (**argv != '/') && (p = strchr(*argv,
- '=')); ++argv) {
+ for (argv += optind; *argv && (p = strchr(*argv, '=')); ++argv) {
if (env_verbosity)
fprintf(stderr, "#env setenv:\t%s\n", *argv);
(void)setenv(*argv, ++p, 1);