From ab85f7c3c26a6bd1bf9225bd6bd34992332c07ce Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Sat, 20 Aug 2005 15:30:30 +0000 Subject: [PATCH] Extra debug logging --- mbcico/binkp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mbcico/binkp.c b/mbcico/binkp.c index 3aaefba0..f0239f7d 100644 --- a/mbcico/binkp.c +++ b/mbcico/binkp.c @@ -1268,6 +1268,7 @@ TrType binkp_receiver(void) * Receive stream compressed data */ if (z_idata == NULL) { + Syslog('b', "Binkp: decompress_init start"); if (decompress_init(bp.rmode)) { Syslog('+', "Binkp: can't init decompress"); bp.RxState = RxDone; @@ -1479,6 +1480,7 @@ TrType binkp_transmitter(void) if ((tmp->compress == CompGZ) || (tmp->compress == CompBZ2)) { bp.tmode = tmp->compress; + Syslog('b', "Binkp: compress_init start"); if ((rc1 = compress_init(bp.tmode))) { Syslog('+', "Binkp: compress_init failed (rc=%d)", rc1); tmp->compress = CompNone;