From: Patrick M. <ume...@us...> - 2006-03-20 17:57:55
|
Update of /cvsroot/radmind/radmind In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17413 Modified Files: command.c ktcheck.c lapply.c lcreate.c lfdiff.c Log Message: Corrected call to compression stat code. Index: lcreate.c =================================================================== RCS file: /cvsroot/radmind/radmind/lcreate.c,v retrieving revision 1.85 retrieving revision 1.86 diff -C2 -d -r1.85 -r1.86 *** lcreate.c 10 Feb 2006 20:48:11 -0000 1.85 --- lcreate.c 20 Mar 2006 17:57:51 -0000 1.86 *************** *** 530,534 **** } #ifdef HAVE_ZLIB ! if( verbose && zlib_level > 0 ) print_stats(sn); #endif /* HAVE_ZLIB */ } --- 530,534 ---- } #ifdef HAVE_ZLIB ! if ( verbose && zlib_level > 0 ) print_stats( sn ); #endif /* HAVE_ZLIB */ } Index: lapply.c =================================================================== RCS file: /cvsroot/radmind/radmind/lapply.c,v retrieving revision 1.129 retrieving revision 1.130 diff -C2 -d -r1.129 -r1.130 *** lapply.c 24 Jan 2006 20:45:50 -0000 1.129 --- lapply.c 20 Mar 2006 17:57:51 -0000 1.130 *************** *** 737,741 **** } #ifdef HAVE_ZLIB ! if( verbose && zlib_level < 0 ) print_stats(sn); #endif /* HAVE_ZLIB */ } --- 737,741 ---- } #ifdef HAVE_ZLIB ! if ( verbose && zlib_level > 0 ) print_stats( sn ); #endif /* HAVE_ZLIB */ } Index: lfdiff.c =================================================================== RCS file: /cvsroot/radmind/radmind/lfdiff.c,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** lfdiff.c 24 Jan 2006 20:44:55 -0000 1.55 --- lfdiff.c 20 Mar 2006 17:57:51 -0000 1.56 *************** *** 416,420 **** } #ifdef HAVE_ZLIB ! if( verbose && zlib_level > 0 ) print_stats(sn); #endif /* HAVE_ZLIB */ --- 416,420 ---- } #ifdef HAVE_ZLIB ! if ( verbose && zlib_level > 0 ) print_stats( sn ); #endif /* HAVE_ZLIB */ Index: command.c =================================================================== RCS file: /cvsroot/radmind/radmind/command.c,v retrieving revision 1.128 retrieving revision 1.129 diff -C2 -d -r1.128 -r1.129 *** command.c 17 Feb 2006 17:19:38 -0000 1.128 --- command.c 20 Mar 2006 17:57:51 -0000 1.129 *************** *** 166,172 **** snet_writef( sn, "%d QUIT OK, closing connection\r\n", 201 ); #ifdef HAVE_ZLIB ! if ( debug && max_zlib_level > 0) { ! print_stats( sn ); ! } #endif /* HAVE_ZLIB */ exit( 0 ); --- 166,170 ---- snet_writef( sn, "%d QUIT OK, closing connection\r\n", 201 ); #ifdef HAVE_ZLIB ! if ( debug && max_zlib_level > 0 ) print_stats( sn ); #endif /* HAVE_ZLIB */ exit( 0 ); Index: ktcheck.c =================================================================== RCS file: /cvsroot/radmind/radmind/ktcheck.c,v retrieving revision 1.109 retrieving revision 1.110 diff -C2 -d -r1.109 -r1.110 *** ktcheck.c 10 Feb 2006 19:31:38 -0000 1.109 --- ktcheck.c 20 Mar 2006 17:57:51 -0000 1.110 *************** *** 862,866 **** } #ifdef HAVE_ZLIB ! if( verbose && zlib_level > 0 ) print_stats(sn); #endif /* HAVE_ZLIB */ --- 862,866 ---- } #ifdef HAVE_ZLIB ! if ( verbose && zlib_level > 0 ) print_stats( sn ); #endif /* HAVE_ZLIB */ |