Skip to content

Commit

Permalink
v1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
circulosmeos committed Sep 11, 2021
1 parent f4c9bf4 commit f577315
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Copy gztool.c to the directory where you compiled zlib, and do:
Usage
=====

gztool (v1.4.1)
gztool (v1.4.2)
GZIP files indexer, compressor and data retriever.
Create small indexes for gzipped files and use them
for quick and random-positioned data extraction.
Expand Down Expand Up @@ -430,7 +430,7 @@ Other interesting links
Version
=======

This version is **v1.4.1**.
This version is **v1.4.2**.

Please, read the *Disclaimer*. In case of any errors, please open an [issue](https://github.com/circulosmeos/gztool/issues).

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([gztool], [1.4.1], [roberto.s.galende@gmail.com])
AC_INIT([gztool], [1.4.2], [roberto.s.galende@gmail.com])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
AC_PROG_CC_C99
Expand Down
2 changes: 1 addition & 1 deletion gztool.1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH gztool 1 "Jul 13 2021" "gztool v1.4.1"
.TH gztool 1 "Sep 11 2021" "gztool v1.4.2"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
Expand Down
6 changes: 3 additions & 3 deletions gztool.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
#include <config.h>
#else
#define PACKAGE_NAME "gztool"
#define PACKAGE_VERSION "1.4.1"
#define PACKAGE_VERSION "1.4.2"
#endif

#define _XOPEN_SOURCE 500 // expose <unistd.h>'s pread()
Expand Down Expand Up @@ -954,7 +954,7 @@ ssize_t PREAD(
// in front of actual decompression stream (decompress_and_build_index()),
// to assure that no errors will be found, and if an error is found in advance,
// try to find a reason in these CHUNKS_TO_DECOMPRESS_IN_ADVANCE chunks
// that explain it as an uncorrectly terminated gzip stream and the
// that explain it as an incorrectly terminated gzip stream and the
// beginning of a new one immediatly attached after it:
// and so either a GZIP header or a full flush point are found there.
// If an error is found and a feasible restart is found, its gzip stream
Expand Down Expand Up @@ -5013,7 +5013,7 @@ int main(int argc, char **argv)
}
break;
// `-p` indicates that the gzip input stream may be composed of various
// uncorrectly terminated GZIP streams, and so then a careful
// incorrectly terminated GZIP streams, and so then a careful
// Patching of the input may be needed to extract correct data.
case 'p':
gzip_stream_may_be_damaged = CHUNKS_TO_DECOMPRESS_IN_ADVANCE;
Expand Down

0 comments on commit f577315

Please sign in to comment.