mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
added some trust model stuff
This commit is contained in:
parent
1ce26aa6d6
commit
4ec1775f3e
49 changed files with 1580 additions and 331 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue