From 31c09de03c656b7309888dbbc5240c31ed81537e Mon Sep 17 00:00:00 2001 From: "Christopher R. Hertel" Date: Mon, 3 Aug 1998 22:10:53 +0000 Subject: More formatting changes. Mostly converted some DEBUG() calls to DEBUGADD() so that we wouldn't get too many timestamps. Chris -)----- (This used to be commit 3e7e5fad378cf144927d9f2ffc82f80e150d44ab) --- source3/nmbd/nmbd_winsserver.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/nmbd/nmbd_winsserver.c') diff --git a/source3/nmbd/nmbd_winsserver.c b/source3/nmbd/nmbd_winsserver.c index f663362706..dfa52a65f8 100644 --- a/source3/nmbd/nmbd_winsserver.c +++ b/source3/nmbd/nmbd_winsserver.c @@ -1570,19 +1570,19 @@ void wins_write_database(void) int i; struct tm *tm; - DEBUG(4,("%-19s ", namestr(&namerec->name) )); + DEBUGADD(4,("%-19s ", namestr(&namerec->name) )); if( namerec->data.death_time != PERMANENT_TTL ) { tm = LocalTime(&namerec->data.death_time); - DEBUG(4,("TTL = %s", asctime(tm) )); + DEBUGADD(4,("TTL = %s", asctime(tm) )); } else - DEBUG(4,("TTL = PERMANENT\t")); + DEBUGADD(4,("TTL = PERMANENT\t")); for (i = 0; i < namerec->data.num_ips; i++) - DEBUG(4,("%15s ", inet_ntoa(namerec->data.ip[i]) )); - DEBUG(4,("%2x\n", namerec->data.nb_flags )); + DEBUGADD(4,("%15s ", inet_ntoa(namerec->data.ip[i]) )); + DEBUGADD(4,("%2x\n", namerec->data.nb_flags )); if( namerec->data.source == REGISTER_NAME ) { -- cgit