aboutsummaryrefslogtreecommitdiff
path: root/bin/sh/eval.c
diff options
context:
space:
mode:
authorJens Schweikhardt <schweikh@FreeBSD.org>2006-02-04 14:37:50 +0000
committerJens Schweikhardt <schweikh@FreeBSD.org>2006-02-04 14:37:50 +0000
commit8dcaad55c28327fbd62aea12115312c4e0d6b759 (patch)
treef793fda2159b9172a3c672b33b6eb8a4896c0909 /bin/sh/eval.c
parent8dcefe6112800fd9982a5a337440b774fb709ac9 (diff)
downloadsrc-8dcaad55c28327fbd62aea12115312c4e0d6b759.tar.gz
src-8dcaad55c28327fbd62aea12115312c4e0d6b759.zip
Remove some white space at EOL.
Notes
Notes: svn path=/head/; revision=155301
Diffstat (limited to 'bin/sh/eval.c')
-rw-r--r--bin/sh/eval.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/sh/eval.c b/bin/sh/eval.c
index 031cab310bf0..9d924164a0b0 100644
--- a/bin/sh/eval.c
+++ b/bin/sh/eval.c
@@ -671,15 +671,15 @@ evalcommand(union node *cmd, int flags, struct backcmd *backcmd)
for (sp = varlist.list ; sp ; sp = sp->next)
if (strncmp(sp->text, PATH, sizeof(PATH) - 1) == 0) {
path = sp->text + sizeof(PATH) - 1;
- /*
+ /*
* On `PATH=... command`, we need to make
* sure that the command isn't using the
* non-updated hash table of the outer PATH
- * setting and we need to make sure that
+ * setting and we need to make sure that
* the hash table isn't filled with items
* from the temporary setting.
*
- * It would be better to forbit using and
+ * It would be better to forbit using and
* updating the table while this command
* runs, by the command finding mechanism
* is heavily integrated with hash handling,