summaryrefslogtreecommitdiff
path: root/source3/param
diff options
context:
space:
mode:
authorChristopher R. Hertel <crh@samba.org>1998-08-03 22:10:53 +0000
committerChristopher R. Hertel <crh@samba.org>1998-08-03 22:10:53 +0000
commit31c09de03c656b7309888dbbc5240c31ed81537e (patch)
tree2978f768efe276031d3f9a9ea8aa2545d4f47ca6 /source3/param
parent7448091da6ee11709b8e5117ff6810515567f88a (diff)
downloadsamba-31c09de03c656b7309888dbbc5240c31ed81537e.tar.gz
samba-31c09de03c656b7309888dbbc5240c31ed81537e.tar.bz2
samba-31c09de03c656b7309888dbbc5240c31ed81537e.zip
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)
Diffstat (limited to 'source3/param')
-rw-r--r--source3/param/loadparm.c8
1 files changed, 4 insertions, 4 deletions
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);
}