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/param/loadparm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/param') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index ce8ff7122d..008f4e4539 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1710,17 +1710,17 @@ BOOL lp_file_list_changed(void) pstrcpy(n2,f->name); standard_sub_basic(n2); - DEBUG(6,("file %s -> %s last mod_time: %s\n", - f->name, n2, ctime(&f->modtime))); + DEBUGADD( 6, ( "file %s -> %s last mod_time: %s\n", + f->name, n2, ctime(&f->modtime) ) ); mod_time = file_modtime(n2); if (f->modtime != mod_time) { - DEBUG(6,("file %s modified: %s\n", n2, ctime(&mod_time))); + DEBUGADD(6,("file %s modified: %s\n", n2, ctime(&mod_time))); f->modtime = mod_time; return(True); } - f = f->next; + f = f->next; } return(False); } -- cgit