diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-07-06 10:23:20 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-07-06 10:23:20 +0200 |
commit | 88f5f0e13db107989e8204bbc41161eab775b4d4 (patch) | |
tree | 0244fe51f780606390df7e27c176342c5362e650 /src | |
parent | afd790ead33cea06cc36c37d85c1dec0b84b3fe0 (diff) |
use _exit() even with fork()
Diffstat (limited to 'src')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,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') { |