aboutsummaryrefslogtreecommitdiff
path: root/archival/tar.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-02-06 01:20:12 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-02-06 01:20:12 +0000
commit1d76f439da81d3a05f0e0fdde3f81ec56fb20836 (patch)
treef3e2e2185d092f87843fe4bbc9d1098185a5bdbd /archival/tar.c
parentcc24419e98853aede7c652edb3c1c79a9865bdda (diff)
downloadbusybox-w32-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.tar.gz
busybox-w32-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.tar.bz2
busybox-w32-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.zip
EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>
Diffstat (limited to 'archival/tar.c')
-rw-r--r--archival/tar.c2
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]);