mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 16:49:39 -05:00
ITS:3749: Extend manageDIT support to LDBM.
This commit is contained in:
parent
b0ad896f5e
commit
8297b0b9df
2 changed files with 3 additions and 3 deletions
|
|
@ -45,8 +45,8 @@ ldbm_back_add(
|
|||
Debug(LDAP_DEBUG_ARGS, "==> ldbm_back_add: %s\n",
|
||||
op->o_req_dn.bv_val, 0, 0);
|
||||
|
||||
rs->sr_err = entry_schema_check( op->o_bd, op->oq_add.rs_e, NULL, 0,
|
||||
&rs->sr_text, textbuf, textlen );
|
||||
rs->sr_err = entry_schema_check( op->o_bd, op->oq_add.rs_e, NULL,
|
||||
get_manageDIT(op), &rs->sr_text, textbuf, textlen );
|
||||
|
||||
if ( rs->sr_err != LDAP_SUCCESS ) {
|
||||
Debug( LDAP_DEBUG_TRACE, "entry failed schema check: %s\n",
|
||||
|
|
|
|||
|
|
@ -164,7 +164,7 @@ int ldbm_modify_internal(
|
|||
}
|
||||
|
||||
/* check that the entry still obeys the schema */
|
||||
rc = entry_schema_check( op->o_bd, e, save_attrs, 0,
|
||||
rc = entry_schema_check( op->o_bd, e, save_attrs, get_manageDIT(op),
|
||||
text, textbuf, textlen );
|
||||
if ( rc != LDAP_SUCCESS ) {
|
||||
Debug( LDAP_DEBUG_ANY, "entry failed schema check: %s\n",
|
||||
|
|
|
|||
Loading…
Reference in a new issue