diff options
author | Denis Vlasenko | 2008-02-17 14:28:53 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-02-17 14:28:53 +0000 |
commit | cb448fe01bbe75ef31c3190e8b63b0e1a320ffb4 (patch) | |
tree | 9757477193c1b8f3be9a772cabfb1ef92639240e /libbb/vfork_daemon_rexec.c | |
parent | ffae845cfd0a0b9872827d806984841d4cfee104 (diff) | |
download | busybox-cb448fe01bbe75ef31c3190e8b63b0e1a320ffb4.zip busybox-cb448fe01bbe75ef31c3190e8b63b0e1a320ffb4.tar.gz |
libbb: introduce and use xrename and rename_or_warn.
Diffstat (limited to 'libbb/vfork_daemon_rexec.c')
-rw-r--r-- | libbb/vfork_daemon_rexec.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libbb/vfork_daemon_rexec.c b/libbb/vfork_daemon_rexec.c index 98339c9..1567d89 100644 --- a/libbb/vfork_daemon_rexec.c +++ b/libbb/vfork_daemon_rexec.c @@ -98,11 +98,6 @@ int wait4pid(int pid) if (WIFSIGNALED(status)) return WTERMSIG(status) + 1000; return 0; - if (WIFEXITED(status)) - return WEXITSTATUS(status); - if (WIFSIGNALED(status)) - return WTERMSIG(status) + 1000; - return 0; } #if ENABLE_FEATURE_PREFER_APPLETS |