]> git.sur5r.net Git - openldap/commitdiff
ITS:3749: Extend manageDIT support to LDBM.
authorKurt Zeilenga <kurt@openldap.org>
Fri, 3 Jun 2005 17:24:31 +0000 (17:24 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 3 Jun 2005 17:24:31 +0000 (17:24 +0000)
servers/slapd/back-ldbm/add.c
servers/slapd/back-ldbm/modify.c

index 1425cb461e509450aa20dd02adf76669cd613f8d..39b03af185049c18647e2d3224afd6a9a163c0d7 100644 (file)
@@ -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",
index e2a9122643c7761f006470fae71f502c3cdb450d..51d10c269197ab37358f2242a8df3fde6d3a36ae 100644 (file)
@@ -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",