diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-28 23:17:31 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-28 23:17:31 +0000 |
commit | 918a34b9e04cbf368dd7a1116d7467e6e7f8ccc9 (patch) | |
tree | e210dcb9b76b230df380c56334f9a26d6f0aa05e /shell/hush.c | |
parent | 6a2d40f239566e886ef76542a75662cee9380a0e (diff) | |
download | busybox-w32-918a34b9e04cbf368dd7a1116d7467e6e7f8ccc9.tar.gz busybox-w32-918a34b9e04cbf368dd7a1116d7467e6e7f8ccc9.tar.bz2 busybox-w32-918a34b9e04cbf368dd7a1116d7467e6e7f8ccc9.zip |
hush: fix "while false; ..." exitcode; add testsuites
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c index a74fe4730..5b2f188cd 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -2305,8 +2305,10 @@ static int run_list(struct pipe *pi) | |||
2305 | #endif | 2305 | #endif |
2306 | #if ENABLE_HUSH_LOOPS | 2306 | #if ENABLE_HUSH_LOOPS |
2307 | if (rword == RES_WHILE) { | 2307 | if (rword == RES_WHILE) { |
2308 | if (rcode) | 2308 | if (rcode) { |
2309 | rcode = 0; /* "while false; do...done" - exitcode 0 */ | ||
2309 | goto check_jobs_and_break; | 2310 | goto check_jobs_and_break; |
2311 | } | ||
2310 | } | 2312 | } |
2311 | if (rword == RES_UNTIL) { | 2313 | if (rword == RES_UNTIL) { |
2312 | if (!rcode) { | 2314 | if (!rcode) { |