diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-06 01:20:12 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-06 01:20:12 +0000 |
commit | e84333341b74188d901c2784f00b4c970b419be0 (patch) | |
tree | f3e2e2185d092f87843fe4bbc9d1098185a5bdbd /archival | |
parent | 25a67790a738b7155dc868979c211001148f616f (diff) | |
download | busybox-w32-e84333341b74188d901c2784f00b4c970b419be0.tar.gz busybox-w32-e84333341b74188d901c2784f00b4c970b419be0.tar.bz2 busybox-w32-e84333341b74188d901c2784f00b4c970b419be0.zip |
EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>
git-svn-id: svn://busybox.net/trunk/busybox@17785 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'archival')
-rw-r--r-- | archival/tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/tar.c b/archival/tar.c index 48c4f3f8c..d8e36749e 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -529,7 +529,7 @@ static int writeTarFile(const int tar_fd, const int verboseFlag, | |||
529 | close(gzipStatusPipe[0]); | 529 | close(gzipStatusPipe[0]); |
530 | fcntl(gzipStatusPipe[1], F_SETFD, FD_CLOEXEC); /* close on exec shows success */ | 530 | fcntl(gzipStatusPipe[1], F_SETFD, FD_CLOEXEC); /* close on exec shows success */ |
531 | 531 | ||
532 | execlp(zip_exec, zip_exec, "-f", NULL); | 532 | BB_EXECLP(zip_exec, zip_exec, "-f", NULL); |
533 | vfork_exec_errno = errno; | 533 | vfork_exec_errno = errno; |
534 | 534 | ||
535 | close(gzipStatusPipe[1]); | 535 | close(gzipStatusPipe[1]); |