diff options
author | Enrico Jorns <ejo@pengutronix.de> | 2016-09-12 12:20:56 +0200 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2016-09-16 09:36:26 +0200 |
commit | 9cd9d98300af3039db7f146a47914baef2e8ea1b (patch) | |
tree | 6919f2da2e25f64089ffb1771c430f7c341e8342 /commands/help.c | |
parent | a38b7017b3d9b16fcc08c5d1ae83cd920a6af699 (diff) | |
download | barebox-9cd9d98300af3039db7f146a47914baef2e8ea1b.tar.gz |
commands: exit on invalid option
Barebox commands should not perform any action and return 0 if an
invalid parameter was given. This might cause undetected unintended
behvaior when calling commands with wrong options, either manually or
from a script.
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/help.c')
-rw-r--r-- | commands/help.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/commands/help.c b/commands/help.c index 3d36d9bf48..819c40653c 100644 --- a/commands/help.c +++ b/commands/help.c @@ -98,6 +98,8 @@ static int do_help(int argc, char *argv[]) case 'a': all = 1; break; + default: + return COMMAND_ERROR_USAGE; } } |