commit | 8e74bf94f36f254767da1f48d3752068e92aea46 | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Wed Jun 20 07:54:15 2001 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Wed Jun 20 07:54:15 2001 +0000 |
tree | 9f277f3867c360c1d209e27fb5795d2fdc5c59fe | |
parent | eb1c94078f35d1b6e48741122c8bb9426befc5eb [diff] [blame] |
Changed gz_open to ruturn a stream
diff --git a/archival/tar.c b/archival/tar.c index f31859e..0cb638a 100644 --- a/archival/tar.c +++ b/archival/tar.c
@@ -274,7 +274,7 @@ /* 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"); } }