Add fd_in field to struct rzip_control.

This commit is contained in:
Con Kolivas 2011-03-14 14:58:41 +11:00
parent 00be150cfb
commit d56c826725
2 changed files with 2 additions and 0 deletions

View file

@ -467,6 +467,7 @@ void decompress_file(rzip_control *control)
fatal("Failed to open %s\n", infilecopy); fatal("Failed to open %s\n", infilecopy);
} }
} }
control->fd_in = fd_in;
if (!(TEST_ONLY | STDOUT)) { if (!(TEST_ONLY | STDOUT)) {
if (FORCE_REPLACE) if (FORCE_REPLACE)

View file

@ -189,6 +189,7 @@ struct rzip_control {
int minor_version; int minor_version;
i64 st_size; i64 st_size;
long page_size; long page_size;
int fd_in;
int fd_out; int fd_out;
int fd_hist; int fd_hist;
char encrypt; char encrypt;