mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-01-20 15:20:15 +01:00
Merge branch 'pete4abw-master'
This commit is contained in:
commit
8814c7638d
|
|
@ -1,5 +1,10 @@
|
|||
lrzip ChangeLog
|
||||
|
||||
DECEMBER 2014, version 0.617 Peter Hyman
|
||||
|
||||
* Fix display of lrzip -i output so that source filesize is reported
|
||||
properly when larger than one chunk.
|
||||
|
||||
SEPTEMBER 2013, version 0.616 George Makrydakis
|
||||
|
||||
* Making things more homogeneous in checks, some space removed.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,7 @@
|
|||
lrzip-0.617
|
||||
|
||||
Fixes display output of lrzip -i for large files greater than one chunk.
|
||||
|
||||
lrzip-0.616
|
||||
|
||||
Fixes for various issues with -O not working with trailing slashes and
|
||||
|
|
|
|||
2
lrzip.c
2
lrzip.c
|
|
@ -1034,8 +1034,6 @@ next_chunk:
|
|||
done:
|
||||
if (unlikely(ofs > infile_size))
|
||||
failure_goto(("Offset greater than archive size, likely corrupted/truncated archive.\n"), error);
|
||||
if (chunk_total > expected_size)
|
||||
expected_size = chunk_total;
|
||||
print_verbose("Rzip compression: %.1f%% %lld / %lld\n",
|
||||
percentage (utotal, expected_size),
|
||||
utotal, expected_size);
|
||||
|
|
|
|||
Loading…
Reference in a new issue