summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorRabin Vincent <rabin@rab.in>2014-10-29 23:21:41 +0100
committerTom Rini <trini@ti.com>2014-11-07 16:27:06 -0500
commit2302b3ab85843c9a8dbb3a924030659d87a23349 (patch)
treead20b1650d4c2911831cedcfe59770d372ecf169 /common
parent128059b926b3c34bbb364dcacd8d0511ff906be8 (diff)
downloadtalos-obmc-uboot-2302b3ab85843c9a8dbb3a924030659d87a23349.tar.gz
talos-obmc-uboot-2302b3ab85843c9a8dbb3a924030659d87a23349.zip
hush: make run_command() return an error on parsing failure
run_command() returns success even if the command had a syntax error; correct this behaviour. Signed-off-by: Rabin Vincent <rabin@rab.in> Acked-by: Simon Glass <sjg@chromium.org)
Diffstat (limited to 'common')
-rw-r--r--common/cli_hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cli_hush.c b/common/cli_hush.c
index a07ae717e1..d643912922 100644
--- a/common/cli_hush.c
+++ b/common/cli_hush.c
@@ -3162,7 +3162,7 @@ static int parse_stream_outer(struct in_str *inp, int flag)
o_string temp=NULL_O_STRING;
int rcode;
#ifdef __U_BOOT__
- int code = 0;
+ int code = 1;
#endif
do {
ctx.type = flag;
OpenPOWER on IntegriCloud