summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-08-03 21:30:22 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-08-03 21:30:22 +0200
commitec40c7b3c903c53503a81856d35dd326062c3875 (patch)
treeee2a1c70adb7e7bc668477dae806bfbe5f9005aa /src
parent9bb579dc612122b3668b346ad41dd9f6d258bf80 (diff)
use _exit() instead of exit()
Diffstat (limited to 'src')
-rw-r--r--src/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c
index db7bcc5..093735d 100644
--- a/src/util.c
+++ b/src/util.c
@@ -45,7 +45,7 @@ pexecvp(const char *file, char *const argv[], pid_t *pid, char *type) {
}
execvp(file, argv);
- exit(127);
+ _exit(127);
} else {
/* parent */
if (*type == 'r') {