aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2020-02-21 16:16:56 +0000
committerDenys Vlasenko <vda.linux@googlemail.com>2020-02-24 12:52:41 +0100
commit6cda0b04a3d3c36312adf7a9aa608306f6a5704a (patch)
tree95f8d11e21dd7545f45cf5f269e606b37ca7a631 /shell/ash.c
parent7f198485529cf3b9cc074a944dec56769872a1e3 (diff)
downloadbusybox-6cda0b04a3d3c36312adf7a9aa608306f6a5704a.tar.gz
ash: move TRACE statement in evalcommand()
Following recent work on evalcommand() a TRACE statement to report the status of a forked command was left in the wrong place. Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index bf6a86d3d..03864c667 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -10392,7 +10392,6 @@ evalcommand(union node *cmd, int flags)
jp = makejob(/*cmd,*/ 1);
if (forkshell(jp, cmd, FORK_FG) != 0) {
/* parent */
- TRACE(("forked child exited with %d\n", status));
break;
}
/* child */
@@ -10418,6 +10417,8 @@ evalcommand(union node *cmd, int flags)
} /* switch */
status = waitforjob(jp);
+ if (jp)
+ TRACE(("forked child exited with %d\n", status));
FORCE_INT_ON;
out: