summaryrefslogtreecommitdiff
path: root/source3/nmbd/nmbd_workgroupdb.c
diff options
context:
space:
mode:
authorChristopher R. Hertel <crh@samba.org>1998-08-03 18:13:13 +0000
committerChristopher R. Hertel <crh@samba.org>1998-08-03 18:13:13 +0000
commitf1abfacd4d230075e5c4029271f2f3952ac2c68a (patch)
tree4e6b97fc99ab33314c78af1122577060cabb0901 /source3/nmbd/nmbd_workgroupdb.c
parent4fa20ebdc051083b02c790ff8a1c0a1094bd5e53 (diff)
downloadsamba-f1abfacd4d230075e5c4029271f2f3952ac2c68a.tar.gz
samba-f1abfacd4d230075e5c4029271f2f3952ac2c68a.tar.bz2
samba-f1abfacd4d230075e5c4029271f2f3952ac2c68a.zip
I finished removing timestring() calls from DEBUG() messages. Also went
through and changed some DEBUG() calls to DEBUGADD() to combine output under a single timestamp. There were too many timestamps. Note that Jeremy has told me that he's working on adding a config parameter to turn timestamps off. Cool. Chris -)----- (This used to be commit 247dbc9a24987035a47f1ba4fa143b1e2c050e92)
Diffstat (limited to 'source3/nmbd/nmbd_workgroupdb.c')
-rw-r--r--source3/nmbd/nmbd_workgroupdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nmbd/nmbd_workgroupdb.c b/source3/nmbd/nmbd_workgroupdb.c
index 818875c820..51b2519d83 100644
--- a/source3/nmbd/nmbd_workgroupdb.c
+++ b/source3/nmbd/nmbd_workgroupdb.c
@@ -183,11 +183,11 @@ struct work_record *find_workgroup_on_subnet(struct subnet_record *subrec,
{
if (!strcmp(ret->work_group,name))
{
- DEBUG(4, ("found\n"));
+ DEBUGADD(4, ("found.\n"));
return(ret);
}
}
- DEBUG(4, ("not found\n"));
+ DEBUGADD(4, ("not found.\n"));
return NULL;
}