Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-06-26 16:43:56 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2018-06-26 16:43:56 +0300
commitc96bb2c5ab2772d649c67a716615a72f4aca9cd3 (patch)
tree3eeb7a103bcf5fdb652865a57333e8f6d31ca4cc
parent99496dc7160552824d6146ec951b2f7b03a51759 (diff)
hush: fix for !ENABLE_HUSH_MODE_X configuration
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--shell/hush.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 738a6b286..8d4478ae5 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -8255,8 +8255,8 @@ static int checkjobs_and_fg_shell(struct pipe *fg_pipe)
* subshell: ( list ) [&]
*/
#if !ENABLE_HUSH_MODE_X
-#define redirect_and_varexp_helper(old_vars_p, command, squirrel, argv_expanded) \
- redirect_and_varexp_helper(old_vars_p, command, squirrel)
+#define redirect_and_varexp_helper(command, squirrel, argv_expanded) \
+ redirect_and_varexp_helper(command, squirrel)
#endif
static int redirect_and_varexp_helper(
struct command *command,