[PATCH 04/13] hush: remove bogus 'else'
Sascha Hauer
s.hauer at pengutronix.de
Mon Apr 30 07:19:19 EDT 2012
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
common/hush.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/common/hush.c b/common/hush.c
index 017f96d..4e78577 100644
--- a/common/hush.c
+++ b/common/hush.c
@@ -610,7 +610,9 @@ static int run_pipe_real(struct p_context *ctx, struct pipe *pi)
rcode = run_list_real(ctx, child->group);
return rcode;
- } else if (pi->num_progs == 1 && pi->progs[0].argv != NULL) {
+ }
+
+ if (pi->num_progs == 1 && pi->progs[0].argv != NULL) {
for (i = 0; is_assignment(child->argv[i]); i++)
{ /* nothing */ }
--
1.7.10
More information about the barebox
mailing list