From: Denys Vlasenko Date: Tue, 26 Jun 2018 13:43:56 +0000 (+0200) Subject: hush: fix for !ENABLE_HUSH_MODE_X configuration X-Git-Tag: 1_29_0~21 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c96bb2c5ab2772d649c67a716615a72f4aca9cd3;p=oweals%2Fbusybox.git hush: fix for !ENABLE_HUSH_MODE_X configuration Signed-off-by: Denys Vlasenko --- 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,