diff options
Diffstat (limited to 'shell/hush.c')
-rw-r--r-- | shell/hush.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c index 6a27b1634..982fc356a 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -8587,7 +8587,7 @@ static NOINLINE void pseudo_exec_argv(nommu_save_t *nommu_save, | |||
8587 | * expand_assignments(): think about ... | var=`sleep 1` | ... | 8587 | * expand_assignments(): think about ... | var=`sleep 1` | ... |
8588 | */ | 8588 | */ |
8589 | free_strings(new_env); | 8589 | free_strings(new_env); |
8590 | _exit(EXIT_SUCCESS); | 8590 | _exit_SUCCESS(); |
8591 | } | 8591 | } |
8592 | 8592 | ||
8593 | sv_shadowed = G.shadowed_vars_pp; | 8593 | sv_shadowed = G.shadowed_vars_pp; |
@@ -8768,7 +8768,7 @@ static void pseudo_exec(nommu_save_t *nommu_save, | |||
8768 | 8768 | ||
8769 | /* Case when we are here: ... | >file */ | 8769 | /* Case when we are here: ... | >file */ |
8770 | debug_printf_exec("pseudo_exec'ed null command\n"); | 8770 | debug_printf_exec("pseudo_exec'ed null command\n"); |
8771 | _exit(EXIT_SUCCESS); | 8771 | _exit_SUCCESS(); |
8772 | } | 8772 | } |
8773 | 8773 | ||
8774 | #if ENABLE_HUSH_JOB | 8774 | #if ENABLE_HUSH_JOB |