summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/basic/exec-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/exec-util.c b/src/basic/exec-util.c
index 246cc4f4f..336bb7ca5 100644
--- a/src/basic/exec-util.c
+++ b/src/basic/exec-util.c
@@ -65,7 +65,7 @@ static int do_spawn(const char *path, char *argv[], int stdout_fd, pid_t *pid) {
/* If the fd happens to be in the right place, go along with that */
if (stdout_fd != STDOUT_FILENO &&
dup2(stdout_fd, STDOUT_FILENO) < 0)
- return -errno;
+ _exit(EXIT_FAILURE);
(void) fd_cloexec(STDOUT_FILENO, false);
}