diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-06-01 12:47:07 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-06-01 12:47:07 +0200 |
commit | 56a3b82e9692a25ef9c9269e88feac0d579ce8e8 (patch) | |
tree | 3d44e2acc59e4c9a3e46d823428229edd19762a9 | |
parent | 00ae989ee5b57593362405288b5e977551cafb0b (diff) | |
download | busybox-w32-56a3b82e9692a25ef9c9269e88feac0d579ce8e8.tar.gz busybox-w32-56a3b82e9692a25ef9c9269e88feac0d579ce8e8.tar.bz2 busybox-w32-56a3b82e9692a25ef9c9269e88feac0d579ce8e8.zip |
hush: better comment. No code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | shell/hush.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index c7971b0ce..1082738a2 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -7500,7 +7500,7 @@ static int run_list(struct pipe *pi) | |||
7500 | /* Beware of "while false; true; do ..."! */ | 7500 | /* Beware of "while false; true; do ..."! */ |
7501 | if (pi->next | 7501 | if (pi->next |
7502 | && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE) | 7502 | && (pi->next->res_word == RES_DO || pi->next->res_word == RES_DONE) |
7503 | /* (the second check above is needed for "while ...; do \n done" case) */ | 7503 | /* check for RES_DONE is needed for "while ...; do \n done" case */ |
7504 | ) { | 7504 | ) { |
7505 | if (rword == RES_WHILE) { | 7505 | if (rword == RES_WHILE) { |
7506 | if (rcode) { | 7506 | if (rcode) { |