diff options
author | Werner Koch <[email protected]> | 1997-12-01 10:33:23 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1997-12-01 10:33:23 +0000 |
commit | 5c1cca042e6bc0de22c7913f08457c7b8a46e592 (patch) | |
tree | 234246f67cf2e7deb79b94e7491fdd7111c1c65e /g10/compress.c | |
parent | Improved prime number test (diff) | |
download | gnupg-5c1cca042e6bc0de22c7913f08457c7b8a46e592.tar.gz gnupg-5c1cca042e6bc0de22c7913f08457c7b8a46e592.zip |
List and check sigs works
Diffstat (limited to 'g10/compress.c')
-rw-r--r-- | g10/compress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/compress.c b/g10/compress.c index 38d23adf8..d0e2bc539 100644 --- a/g10/compress.c +++ b/g10/compress.c @@ -192,10 +192,10 @@ compress_filter( void *opaque, int control, cd.len = 0; cd.algorithm = 2; /* zlib */ init_packet( &pkt ); - pkt.pkttype = PKT_COMPR_DATA; + pkt.pkttype = PKT_COMPRESSED; pkt.pkt.compressed = &cd; if( build_packet( a, &pkt )) - log_bug("build_packet(COMPRESSED) failed\n"); + log_bug("build_packet(PKT_COMPRESSED) failed\n"); zs = zfx->opaque = m_alloc_clear( sizeof *zs ); init_compress( zfx, zs ); zfx->status = 2; |