diff options
author | Denis Vlasenko | 2007-02-06 01:20:12 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-02-06 01:20:12 +0000 |
commit | 1d76f439da81d3a05f0e0fdde3f81ec56fb20836 (patch) | |
tree | f3e2e2185d092f87843fe4bbc9d1098185a5bdbd /coreutils/nohup.c | |
parent | cc24419e98853aede7c652edb3c1c79a9865bdda (diff) | |
download | busybox-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.zip busybox-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.tar.gz |
EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>
Diffstat (limited to 'coreutils/nohup.c')
-rw-r--r-- | coreutils/nohup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/nohup.c b/coreutils/nohup.c index a9944b7..6a6c70e 100644 --- a/coreutils/nohup.c +++ b/coreutils/nohup.c @@ -53,7 +53,7 @@ int nohup_main(int argc, char **argv) close(nullfd); signal(SIGHUP, SIG_IGN); - execvp(argv[1], argv+1); + BB_EXECVP(argv[1], argv+1); if (ENABLE_FEATURE_CLEAN_UP && home) free((char*)nohupout); bb_perror_msg_and_die("%s", argv[1]); |