mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-20 13:53:21 -05:00
this bug highlighted ITS#4295 issue
This commit is contained in:
parent
c67c99e3bd
commit
3f2bb04ac0
1 changed files with 2 additions and 2 deletions
|
|
@ -453,7 +453,7 @@ slap_modrdn2mods(
|
|||
mod_tmp->sml_nvalues = NULL;
|
||||
}
|
||||
mod_tmp->sml_op = SLAP_MOD_SOFTADD;
|
||||
mod_tmp->sml_flags = SLAP_MOD_INTERNAL;
|
||||
mod_tmp->sml_flags = 0;
|
||||
mod_tmp->sml_next = op->orr_modlist;
|
||||
op->orr_modlist = mod_tmp;
|
||||
}
|
||||
|
|
@ -494,7 +494,7 @@ slap_modrdn2mods(
|
|||
mod_tmp->sml_nvalues = NULL;
|
||||
}
|
||||
mod_tmp->sml_op = LDAP_MOD_DELETE;
|
||||
mod_tmp->sml_flags = SLAP_MOD_INTERNAL;
|
||||
mod_tmp->sml_flags = 0;
|
||||
mod_tmp->sml_next = op->orr_modlist;
|
||||
op->orr_modlist = mod_tmp;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue