From accd4bdd6eb610f180db812281b807a42bdd68aa Mon Sep 17 00:00:00 2001 From: "Horst G. Burkhardt" Date: Thu, 29 Mar 2018 08:53:57 +0000 Subject: user/ncompress: ncompress no longer conflicts with gzip; bugfix debian #220820 --- user/ncompress/fix-9bit-compress.patch | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 user/ncompress/fix-9bit-compress.patch (limited to 'user/ncompress/fix-9bit-compress.patch') diff --git a/user/ncompress/fix-9bit-compress.patch b/user/ncompress/fix-9bit-compress.patch new file mode 100644 index 000000000..3fcd13d2f --- /dev/null +++ b/user/ncompress/fix-9bit-compress.patch @@ -0,0 +1,20 @@ +--- old/compress42.c 1992-10-28 06:10:53.000000000 -0500 ++++ fixed/compress42.c 2003-11-12 19:42:49.000000000 -0500 +@@ -228,7 +228,7 @@ + #define FIRST 257 /* first free entry */ + #define CLEAR 256 /* table clear output code */ + +-#define INIT_BITS 9 /* initial number of bits/code */ ++#define INIT_BITS 8 /* initial number of bits/code */ + + #ifndef SACREDMEM + /* +@@ -819,7 +819,7 @@ + nextarg: continue; + } + +- if (maxbits < INIT_BITS) maxbits = INIT_BITS; ++ if (maxbits <= INIT_BITS) maxbits = INIT_BITS + 1; + if (maxbits > BITS) maxbits = BITS; + + if (*filelist != NULL) \ No newline at end of file -- cgit v1.2.3-60-g2f50