diff options
author | Werner Koch <wk@gnupg.org> | 1998-01-16 22:15:24 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-01-16 22:15:24 +0100 |
commit | 4ec1775f3eaf8733a5285460b631253b90d3c6fb (patch) | |
tree | 3061decd5793f93c5a51dab58cb45c8e79a26403 /g10/compress.c | |
parent | *** empty log message *** (diff) | |
download | gnupg2-4ec1775f3eaf8733a5285460b631253b90d3c6fb.tar.xz gnupg2-4ec1775f3eaf8733a5285460b631253b90d3c6fb.zip |
added some trust model stuff
Diffstat (limited to 'g10/compress.c')
-rw-r--r-- | g10/compress.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/g10/compress.c b/g10/compress.c index 0502b3637..8f8b5e6de 100644 --- a/g10/compress.c +++ b/g10/compress.c @@ -41,7 +41,6 @@ static void init_compress( compress_filter_context_t *zfx, z_stream *zs ) { int rc; - byte *inbuf, *outbuf; int level; @@ -102,9 +101,6 @@ static void init_uncompress( compress_filter_context_t *zfx, z_stream *zs ) { int rc; - byte *inbuf, *outbuf; - int level; - /**************** * PGP uses a windowsize of 13 bits. Using a negative value for @@ -175,7 +171,7 @@ compress_filter( void *opaque, int control, size_t size = *ret_len; compress_filter_context_t *zfx = opaque; z_stream *zs = zfx->opaque; - int zrc, rc=0; + int rc=0; if( control == IOBUFCTRL_UNDERFLOW ) { if( !zfx->status ) { |