diff options
| author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2007-08-03 21:23:33 +0200 |
|---|---|---|
| committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2007-08-03 21:23:33 +0200 |
| commit | b4bf1d3f2265c9cc7809b759665b4223f783e00b (patch) | |
| tree | 1f85a2d187d2fcd1a1b3c662443ff9612ec31f40 | |
| parent | 7a3addfd66c6b310e5bb32d831a3b362245fee11 (diff) | |
use _exit() instead of exit()
| -rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,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') { |
