From 8f5fa958bcbbebc34062564be87b3281f154f612 Mon Sep 17 00:00:00 2001 From: Gavin Henry Date: Fri, 10 Aug 2007 17:02:15 +0000 Subject: [PATCH] Debug messages cleaned up (ITS#5085) --- CHANGES | 1 + servers/slapd/overlays/translucent.c | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 5654687133..41f8791cf4 100644 --- a/CHANGES +++ b/CHANGES @@ -17,6 +17,7 @@ OpenLDAP 2.3.38 Engineering Fixed macro definition of open() in glibc 2.6 (ITS#5075) Documentation aspell --lang=en_US -c (ITS#5076) + Debug messages cleaned up (ITS#5085) OpenLDAP 2.3.37 Release (2007/07/20) Fixed slapd-glue/syncprov interaction (ITS#4623) diff --git a/servers/slapd/overlays/translucent.c b/servers/slapd/overlays/translucent.c index 1aafba2662..2ead69af81 100644 --- a/servers/slapd/overlays/translucent.c +++ b/servers/slapd/overlays/translucent.c @@ -686,7 +686,7 @@ static int translucent_db_init(BackendDB *be) { overlay_stack *ov; int rc; - Debug(LDAP_DEBUG_TRACE, "==> translucent_init\n", 0, 0, 0); + Debug(LDAP_DEBUG_TRACE, "==> translucent_db_init\n", 0, 0, 0); ov = ch_calloc(1, sizeof(overlay_stack)); ov->config = ch_calloc(1, sizeof(translucent_configuration)); @@ -726,11 +726,11 @@ static int translucent_db_open(BackendDB *be) { /* "should never happen" */ if(!ov->info) { - Debug(LDAP_DEBUG_ANY, "translucent_open() called with bad ov->info\n", 0, 0, 0); + Debug(LDAP_DEBUG_ANY, "translucent_db_open() called with bad ov->info\n", 0, 0, 0); return(LDAP_OTHER); } - Debug(LDAP_DEBUG_TRACE, "translucent_open\n", 0, 0, 0); + Debug(LDAP_DEBUG_TRACE, "translucent_db_open\n", 0, 0, 0); be->be_private = ov->private; rc = ov->info->bi_db_open ? ov->info->bi_db_open(be) : 0; -- 2.39.5