From: Richard Levitte Date: Thu, 16 Jan 2003 17:28:46 +0000 (+0000) Subject: Add some debugging output. X-Git-Tag: BEN_FIPS_TEST_1~38^2~381 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8228f302ddcb8b80ddc3696ce68f74af8bf8ae44;p=oweals%2Fopenssl.git Add some debugging output. --- diff --git a/crypto/comp/c_zlib.c b/crypto/comp/c_zlib.c index d31ab63ad2..3bcb7c9600 100644 --- a/crypto/comp/c_zlib.c +++ b/crypto/comp/c_zlib.c @@ -207,6 +207,11 @@ static int zlib_stateful_compress_block(COMP_CTX *ctx, unsigned char *out, err = deflate(&state->ostream, Z_SYNC_FLUSH); if (err != Z_OK) return -1; +#ifdef DEBUG_ZLIB + fprintf(stderr,"compress(%4d)->%4d %s\n", + ilen,olen - state->ostream.avail_out, + (ilen != olen - state->ostream.avail_out)?"zlib":"clear"); +#endif return olen - state->ostream.avail_out; } @@ -230,6 +235,11 @@ static int zlib_stateful_expand_block(COMP_CTX *ctx, unsigned char *out, err = inflate(&state->istream, Z_SYNC_FLUSH); if (err != Z_OK) return -1; +#ifdef DEBUG_ZLIB + fprintf(stderr,"expand(%4d)->%4d %s\n", + ilen,olen - state->istream.avail_out, + (ilen != olen - state->istream.avail_out)?"zlib":"clear"); +#endif return olen - state->istream.avail_out; }