mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 02:59:34 -05:00
better fix to ITS#4183 (the prototype in proto-slap.h was erroneously committed earlier)
This commit is contained in:
parent
2707ba1ddf
commit
aac978d8f9
2 changed files with 2 additions and 2 deletions
|
|
@ -830,7 +830,7 @@ static int ldif_back_modify(Operation *op, SlapReply *rs) {
|
|||
int spew_res;
|
||||
|
||||
if ( !SLAP_SHADOW( op->o_bd ))
|
||||
slap_mods_opattrs( op, op->orm_modlist, 1 );
|
||||
slap_mods_opattrs( op, &op->orm_modlist, 1 );
|
||||
|
||||
ldap_pvt_thread_mutex_lock(&ni->li_mutex);
|
||||
dn2path(&op->o_req_ndn, &op->o_bd->be_nsuffix[0], &ni->li_base_path,
|
||||
|
|
|
|||
|
|
@ -503,7 +503,7 @@ slap_modrdn2mods(
|
|||
done:
|
||||
|
||||
if ( rs->sr_err == LDAP_SUCCESS && !repl_user ) {
|
||||
slap_mods_opattrs( op, mod, 1 );
|
||||
slap_mods_opattrs( op, &mod, 1 );
|
||||
}
|
||||
|
||||
/* LDAP v2 supporting correct attribute handling. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue