Skip to content
Snippets Groups Projects
Commit c6a45e14 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#5189

parent 27902530
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,7 @@ OpenLDAP 2.4.6 Engineering
Fixed slapd-bdb/hdb suffix logging (ITS#5128)
Fixed slapd-bdb/hdb IDL LRU handling (ITS#5121)
Fixed slapd-bdb/hdb cachesize config check (ITS#5122)
Fixed slapd-bdb/hdb ldap result code as system errno (ITS#5189)
Fixed slapd-config objectclass handling (ITS#4884)
Fixed slapd-ldap SASL idassert w/o authcId
Fixed slapd-ldap search control parsing (ITS#5138)
......
......@@ -532,6 +532,7 @@ ID bdb_tool_entry_put(
if( rc != 0 ) {
snprintf( text->bv_val, text->bv_len,
"index_entry_add failed: %s (%d)",
rc == LDAP_OTHER ? "Internal error" :
db_strerror(rc), rc );
Debug( LDAP_DEBUG_ANY,
"=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
......@@ -571,6 +572,7 @@ done:
TXN_ABORT( tid );
snprintf( text->bv_val, text->bv_len,
"txn_aborted! %s (%d)",
rc == LDAP_OTHER ? "Internal error" :
db_strerror(rc), rc );
Debug( LDAP_DEBUG_ANY,
"=> " LDAP_XSTRING(bdb_tool_entry_put) ": %s\n",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment