From: Patrick M. <ume...@us...> - 2006-03-20 14:53:36
|
Update of /cvsroot/radmind/radmind In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28575 Modified Files: Tag: radmind-1-6-0-branch command.c ktcheck.c lapply.c lcreate.c lfdiff.c Log Message: Cleaned up and correct calls to print_stats() Index: lcreate.c =================================================================== RCS file: /cvsroot/radmind/radmind/lcreate.c,v retrieving revision 1.84 retrieving revision 1.84.2.1 diff -C2 -d -r1.84 -r1.84.2.1 *** lcreate.c 24 Jan 2006 20:45:22 -0000 1.84 --- lcreate.c 20 Mar 2006 14:53:27 -0000 1.84.2.1 *************** *** 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.2.1 retrieving revision 1.129.2.2 diff -C2 -d -r1.129.2.1 -r1.129.2.2 *** lapply.c 3 Mar 2006 14:40:02 -0000 1.129.2.1 --- lapply.c 20 Mar 2006 14:53:27 -0000 1.129.2.2 *************** *** 729,733 **** } #ifdef HAVE_ZLIB ! if( verbose && zlib_level < 0 ) print_stats(sn); #endif /* HAVE_ZLIB */ } --- 729,733 ---- } #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.2.1 retrieving revision 1.55.2.2 diff -C2 -d -r1.55.2.1 -r1.55.2.2 *** lfdiff.c 3 Mar 2006 14:40:02 -0000 1.55.2.1 --- lfdiff.c 20 Mar 2006 14:53:27 -0000 1.55.2.2 *************** *** 408,412 **** } #ifdef HAVE_ZLIB ! if( verbose && zlib_level > 0 ) print_stats(sn); #endif /* HAVE_ZLIB */ --- 408,412 ---- } #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.127.2.1 retrieving revision 1.127.2.2 diff -C2 -d -r1.127.2.1 -r1.127.2.2 *** command.c 21 Feb 2006 21:23:03 -0000 1.127.2.1 --- command.c 20 Mar 2006 14:53:26 -0000 1.127.2.2 *************** *** 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.2.1 retrieving revision 1.109.2.2 diff -C2 -d -r1.109.2.1 -r1.109.2.2 *** ktcheck.c 3 Mar 2006 14:40:02 -0000 1.109.2.1 --- ktcheck.c 20 Mar 2006 14:53:27 -0000 1.109.2.2 *************** *** 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 */ |