From affb7986cd388facf63f26a5dd7bd680b866bdf8 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 7 Nov 2015 12:43:15 +0100 Subject: Adding upstream version 1.15. Signed-off-by: Daniel Baumann --- ChangeLog | 13 ++++--------- Makefile.in | 3 +-- arg_parser.cc | 4 ++-- configure | 2 +- decoder.cc | 16 ++++++++-------- decoder.h | 3 ++- doc/lziprecover.1 | 2 +- doc/lziprecover.info | 32 ++++++++++++++++---------------- doc/lziprecover.texinfo | 15 ++++++++------- lzip.h | 4 ++-- 10 files changed, 45 insertions(+), 49 deletions(-) diff --git a/ChangeLog b/ChangeLog index ce920e8..9011c74 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,16 +1,11 @@ -2013-07-29 Antonio Diaz Diaz +2013-09-14 Antonio Diaz Diaz - * Version 1.15-rc1 released. - * Minor changes. - * Added chapter 'Unzcrash' to the manual. - -2013-06-17 Antonio Diaz Diaz - - * Version 1.15-pre1 released. + * Version 1.15 released. * repair.cc: Repair multi-member files with up to one byte error per member. * merge.cc: Merge multi-member files. - * Added chapters 'Repairing files' and 'Merging files' to the manual. + * Added chapters 'Repairing files', 'Merging files' and 'Unzcrash' + to the manual. 2013-05-31 Antonio Diaz Diaz diff --git a/Makefile.in b/Makefile.in index bb69807..dbd1917 100644 --- a/Makefile.in +++ b/Makefile.in @@ -57,8 +57,7 @@ $(VPATH)/doc/$(pkgname).info : $(VPATH)/doc/$(pkgname).texinfo man : $(VPATH)/doc/$(progname).1 $(VPATH)/doc/$(progname).1 : $(progname) - help2man -n 'recovers data from damaged lzip files' \ - -o $@ ./$(progname) + help2man -n 'recovers data from damaged lzip files' -o $@ ./$(progname) Makefile : $(VPATH)/configure $(VPATH)/Makefile.in ./config.status diff --git a/arg_parser.cc b/arg_parser.cc index a28d2ba..5cb98a9 100644 --- a/arg_parser.cc +++ b/arg_parser.cc @@ -156,12 +156,12 @@ Arg_parser::Arg_parser( const int argc, const char * const argv[], while( argind < argc ) { const unsigned char ch1 = argv[argind][0]; - const unsigned char ch2 = ( ch1 ? argv[argind][1] : 0 ); + const unsigned char ch2 = ch1 ? argv[argind][1] : 0; if( ch1 == '-' && ch2 ) // we found an option { const char * const opt = argv[argind]; - const char * const arg = (argind + 1 < argc) ? argv[argind+1] : 0; + const char * const arg = ( argind + 1 < argc ) ? argv[argind+1] : 0; if( ch2 == '-' ) { if( !argv[argind][2] ) { ++argind; break; } // we found "--" diff --git a/configure b/configure index 1c2c182..acd569a 100755 --- a/configure +++ b/configure @@ -6,7 +6,7 @@ # to copy, distribute and modify it. pkgname=lziprecover -pkgversion=1.15-rc1 +pkgversion=1.15 progname=lziprecover srctrigger=doc/${pkgname}.texinfo diff --git a/decoder.cc b/decoder.cc index 379aa3d..21a225e 100644 --- a/decoder.cc +++ b/decoder.cc @@ -202,7 +202,7 @@ int LZ_decoder::decode_member( const Pretty_print & pp ) Bit_model bm_rep1[State::states]; Bit_model bm_rep2[State::states]; Bit_model bm_len[State::states][pos_states]; - Bit_model bm_dis_slot[max_dis_states][1<> ( 8 - literal_context_bits ) ); } -- cgit v1.2.3