Debug output: printed soc_cname, should be soc_cname.bv_val

This commit is contained in:
Hallvard Furuseth 2005-07-04 06:05:04 +00:00
parent 430fdb7a1c
commit 40c91251e6
2 changed files with 2 additions and 2 deletions

View File

@ -400,7 +400,7 @@ dn2entry_retry:
if ( oc && !is_entry_objectclass( e, oc, 0 )) {
Debug( LDAP_DEBUG_ACL,
"<= bdb_entry_get: failed to find objectClass %s\n",
oc->soc_cname, 0, 0 );
oc->soc_cname.bv_val, 0, 0 );
rc = LDAP_NO_SUCH_ATTRIBUTE;
goto return_results;
}

View File

@ -118,7 +118,7 @@ int ldbm_back_entry_get(
if ( oc && !is_entry_objectclass( e, oc, 0 )) {
Debug( LDAP_DEBUG_ACL,
"<= ldbm_back_entry_get: failed to find objectClass %s\n",
oc->soc_cname, 0, 0 );
oc->soc_cname.bv_val, 0, 0 );
rc = LDAP_NO_SUCH_ATTRIBUTE;
goto return_results;
}