diff options
Diffstat (limited to '')
-rw-r--r-- | examples/gzappend.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/gzappend.c b/examples/gzappend.c index d7eea3e..23e93cf 100644 --- a/examples/gzappend.c +++ b/examples/gzappend.c | |||
@@ -33,7 +33,7 @@ | |||
33 | * - Add L to constants in lseek() calls | 33 | * - Add L to constants in lseek() calls |
34 | * - Remove some debugging information in error messages | 34 | * - Remove some debugging information in error messages |
35 | * - Use new data_type definition for zlib 1.2.1 | 35 | * - Use new data_type definition for zlib 1.2.1 |
36 | * - Simplfy and unify file operations | 36 | * - Simplify and unify file operations |
37 | * - Finish off gzip file in gztack() | 37 | * - Finish off gzip file in gztack() |
38 | * - Use deflatePrime() instead of adding empty blocks | 38 | * - Use deflatePrime() instead of adding empty blocks |
39 | * - Keep gzip file clean on appended file read errors | 39 | * - Keep gzip file clean on appended file read errors |
@@ -54,7 +54,7 @@ | |||
54 | block boundary to facilitate locating and modifying the last block bit at | 54 | block boundary to facilitate locating and modifying the last block bit at |
55 | the start of the final deflate block. Also whether using Z_BLOCK or not, | 55 | the start of the final deflate block. Also whether using Z_BLOCK or not, |
56 | another required feature of zlib 1.2.x is that inflate() now provides the | 56 | another required feature of zlib 1.2.x is that inflate() now provides the |
57 | number of unusued bits in the last input byte used. gzappend will not work | 57 | number of unused bits in the last input byte used. gzappend will not work |
58 | with versions of zlib earlier than 1.2.1. | 58 | with versions of zlib earlier than 1.2.1. |
59 | 59 | ||
60 | gzappend first decompresses the gzip file internally, discarding all but | 60 | gzappend first decompresses the gzip file internally, discarding all but |