]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-ldap/modify.c
Remove attribute.c, group.c from build
[openldap] / servers / slapd / back-ldap / modify.c
index 807801b77a3f81e336121786f6835e572c79c479..4e947bfbd72cc81325129a89a2539b9ce4f1f3c7 100644 (file)
@@ -60,12 +60,13 @@ ldap_back_modify(
        LDAPMod **modv = NULL;
        LDAPMod *mods;
        Modifications *ml;
-       int i, j;
+       int i, j, rc;
        struct berval mapped;
        struct berval mdn = { 0, NULL };
+       ber_int_t msgid;
 
        lc = ldap_back_getconn(li, conn, op);
-       if ( !lc || !ldap_back_dobind( lc, conn, op ) ) {
+       if ( !lc || !ldap_back_dobind( li, lc, conn, op ) ) {
                return( -1 );
        }
 
@@ -106,10 +107,12 @@ ldap_back_modify(
 
        mods = (LDAPMod *)ch_malloc(i*sizeof(LDAPMod));
        if (mods == NULL) {
+               rc = LDAP_NO_MEMORY;
                goto cleanup;
        }
        modv = (LDAPMod **)ch_malloc((i+1)*sizeof(LDAPMod *));
        if (modv == NULL) {
+               rc = LDAP_NO_MEMORY;
                goto cleanup;
        }
 
@@ -156,20 +159,18 @@ ldap_back_modify(
        }
        modv[i] = 0;
 
-       ldap_modify_s( lc->ld, mdn.bv_val, modv );
+       rc = ldap_modify_ext( lc->ld, mdn.bv_val, modv, op->o_ctrls, NULL, &msgid );
 
 cleanup:;
-#ifdef ENABLE_REWRITE
        if ( mdn.bv_val != dn->bv_val ) {
-#endif /* ENABLE_REWRITE */
                free( mdn.bv_val );
-#ifdef ENABLE_REWRITE
        }
-#endif /* ENABLE_REWRITE */
-       for (i=0; modv[i]; i++)
+       for (i=0; modv[i]; i++) {
                ch_free(modv[i]->mod_bvalues);
-       ch_free(mods);
-       ch_free(modv);
-       return( ldap_back_op_result( lc, conn, op ));
+       }
+       ch_free( mods );
+       ch_free( modv );
+
+       return ldap_back_op_result( li, lc, conn, op, msgid, rc, 1 );
 }