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);
|
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)
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue