]> git.sur5r.net Git - openldap/commitdiff
Debug messages cleaned up (ITS#5085)
authorGavin Henry <ghenry@openldap.org>
Fri, 10 Aug 2007 17:02:15 +0000 (17:02 +0000)
committerGavin Henry <ghenry@openldap.org>
Fri, 10 Aug 2007 17:02:15 +0000 (17:02 +0000)
CHANGES
servers/slapd/overlays/translucent.c

diff --git a/CHANGES b/CHANGES
index 565468713307275f75081913094ab67c48e585fe..41f8791cf4c5c53d4010e7d1a0870a9fc99423a2 100644 (file)
--- 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 <manpage> (ITS#5076)
+               Debug messages cleaned up (ITS#5085)
 
 OpenLDAP 2.3.37 Release (2007/07/20)
        Fixed slapd-glue/syncprov interaction (ITS#4623)
index 1aafba2662ffea90dbbe3482e30adf5c2cffb3c7..2ead69af816347746ee707135432769a3b017634 100644 (file)
@@ -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;