mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
Add fd_in field to struct rzip_control.
This commit is contained in:
parent
00be150cfb
commit
d56c826725
1
lrzip.c
1
lrzip.c
|
|
@ -467,6 +467,7 @@ void decompress_file(rzip_control *control)
|
|||
fatal("Failed to open %s\n", infilecopy);
|
||||
}
|
||||
}
|
||||
control->fd_in = fd_in;
|
||||
|
||||
if (!(TEST_ONLY | STDOUT)) {
|
||||
if (FORCE_REPLACE)
|
||||
|
|
|
|||
|
|
@ -189,6 +189,7 @@ struct rzip_control {
|
|||
int minor_version;
|
||||
i64 st_size;
|
||||
long page_size;
|
||||
int fd_in;
|
||||
int fd_out;
|
||||
int fd_hist;
|
||||
char encrypt;
|
||||
|
|
|
|||
Loading…
Reference in a new issue