--- pgp/src/zunzip.c 2018/04/24 16:39:22 1.1.1.3 +++ pgp/src/zunzip.c 2018/04/24 16:42:21 1.1.1.5 @@ -14,8 +14,10 @@ /* Global Variables */ /**********************/ +#if 0 longint csize; /* used by list_files(), ReadByte(): must be signed */ static longint ucsize; /* used by list_files(), unReduce(), unImplode() */ +#endif ULONG mask_bits[] = {0x00000000L, @@ -97,13 +99,15 @@ int unzip( FILE *inFile, FILE *outFile ) } inptr = inbuf; +#if 0 /* Read in implode information */ csize = 1000L; /* Dummy size just to get input bits */ /* Get compressed, uncompressed file sizes */ csize = ucsize = 1000000000L; /* Make sure we can read in anything */ +#endif if (status == 0) - inflate(); /* Ftoomschk! */ + status = inflate(); /* Ftoomschk! */ /* Flush output buffer before returning */ if (status == 0 && FlushOutput())