Fix if / elif handling bug in HUSH shell
diff --git a/common/hush.c b/common/hush.c
index 4712adc..eeb970c 100644
--- a/common/hush.c
+++ b/common/hush.c
@@ -1843,7 +1843,7 @@
if (rmode == RES_THEN || rmode == RES_ELSE) if_code = next_if_code;
if (rmode == RES_THEN && if_code) continue;
if (rmode == RES_ELSE && !if_code) continue;
- if (rmode == RES_ELIF && !if_code) continue;
+ if (rmode == RES_ELIF && !if_code) break;
if (rmode == RES_FOR && pi->num_progs) {
if (!list) {
/* if no variable values after "in" we skip "for" */