From: Stefan E. <se...@us...> - 2003-08-22 04:18:49
|
Update of /cvsroot/blob/blob/src/commands In directory sc8-pr-cvs1:/tmp/cvs-serv26751/src/commands Modified Files: setip.c sysupd.c tftp.c Log Message: undefine debug Index: setip.c =================================================================== RCS file: /cvsroot/blob/blob/src/commands/setip.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- setip.c 6 Aug 2003 22:55:41 -0000 1.2 +++ setip.c 21 Aug 2003 00:28:03 -0000 1.3 @@ -43,8 +43,8 @@ /********************************************************************** * defines */ -#define SETIP_DEBUG 0 -#if SETIP_DEBUG +#undef SETIP_DEBUG +#ifdef SETIP_DEBUG static int dbg = 1; # define DBG( x, args... ) if ( dbg>=x ) printf( args ) #else Index: sysupd.c =================================================================== RCS file: /cvsroot/blob/blob/src/commands/sysupd.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- sysupd.c 6 Aug 2003 22:55:41 -0000 1.2 +++ sysupd.c 21 Aug 2003 00:28:03 -0000 1.3 @@ -60,8 +60,8 @@ /********************************************************************** * defines */ -#define SYSUPD_DEBUG 1 -#if SYSUPD_DEBUG +#undef SYSUPD_DEBUG +#ifdef SYSUPD_DEBUG static int dbg = 1; # define DBG( x, args... ) if ( dbg>=x ) printf( args ) #else Index: tftp.c =================================================================== RCS file: /cvsroot/blob/blob/src/commands/tftp.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- tftp.c 6 Aug 2003 22:55:41 -0000 1.2 +++ tftp.c 21 Aug 2003 00:28:03 -0000 1.3 @@ -46,8 +46,8 @@ /********************************************************************** * defines */ -#define TFTP_DEBUG 0 -#if TFTP_DEBUG +#undef TFTP_DEBUG +#ifdef TFTP_DEBUG static int dbg = 1; # define DBG( x, args... ) if ( dbg>=x ) printf( args ) #else |