Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tar.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2001-06-20 11:54:15 +0400
committerGlenn L McGrath <bug1@ihug.co.nz>2001-06-20 11:54:15 +0400
commit8e74bf94f36f254767da1f48d3752068e92aea46 (patch)
tree9f277f3867c360c1d209e27fb5795d2fdc5c59fe /tar.c
parenteb1c94078f35d1b6e48741122c8bb9426befc5eb (diff)
Changed gz_open to ruturn a stream
Diffstat (limited to 'tar.c')
-rw-r--r--tar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tar.c b/tar.c
index f31859e33..0cb638a7f 100644
--- a/tar.c
+++ b/tar.c
@@ -274,7 +274,7 @@ extern int tar_main(int argc, char **argv)
/* unzip tarFd in a seperate process */
if (unzipFlag == TRUE) {
comp_file = fdopen(tarFd, "r");
- if ((tarFd = gz_open(comp_file, &pid)) == EXIT_FAILURE) {
+ if ((tarFd = fileno(gz_open(comp_file, &pid))) == EXIT_FAILURE) {
error_msg_and_die("Couldnt unzip file");
}
}