From a67a9627d0ada5214d43d06a34387cd9604108c8 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 20 Aug 2009 03:38:58 +0200 Subject: hush: do not process options after non-option args Signed-off-by: Denys Vlasenko --- shell/hush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell/hush.c') diff --git a/shell/hush.c b/shell/hush.c index 08e7f5052..b71e1b624 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -6461,7 +6461,7 @@ int hush_main(int argc, char **argv) /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */ builtin_argc = 0; while (1) { - opt = getopt(argc, argv, "c:xins" + opt = getopt(argc, argv, "+c:xins" #if !BB_MMU "<:$:R:V:" # if ENABLE_HUSH_FUNCTIONS -- cgit v1.2.3