From 26a99cd8957db86bdc75d9d1ebf00146cb20c87c Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Sun, 2 Oct 2011 13:24:43 -0700 Subject: Add a transparent write mode to gzopen() when 'T' is in the mode. --- gzguts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gzguts.h') diff --git a/gzguts.h b/gzguts.h index 8193451..4d71db0 100644 --- a/gzguts.h +++ b/gzguts.h @@ -136,11 +136,11 @@ typedef struct { unsigned want; /* requested buffer size, default is GZBUFSIZE */ unsigned char *in; /* input buffer */ unsigned char *out; /* output buffer (double-sized when reading) */ + int direct; /* 0 if processing gzip, 1 if transparent */ /* just for reading */ int eof; /* true if end of input file reached */ z_off64_t start; /* where the gzip data started, for rewinding */ int how; /* 0: get header, 1: copy, 2: decompress */ - int direct; /* true if last read direct, false if gzip */ /* just for writing */ int level; /* compression level */ int strategy; /* compression strategy */ -- cgit v1.2.3-55-g6feb