mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 09:39:45 -05:00
Add BDB_INDEX error handling
This commit is contained in:
parent
3ad55b225e
commit
433eb73ef8
1 changed files with 3 additions and 0 deletions
|
|
@ -159,6 +159,9 @@ ID bdb_tool_entry_put(
|
|||
#if BDB_INDEX
|
||||
rc = bdb_index_entry_add( be, tid, e, e->e_attrs );
|
||||
if( rc != 0 ) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"=> bdb_tool_entry_put: index_entry_add failed: %s (%d)\n",
|
||||
db_strerror(rc), rc, 0 );
|
||||
goto done;
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue