mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 23:29:34 -05:00
ITS#7000 fix bad patch in ITS#6472
This commit is contained in:
parent
890d4c6216
commit
ff7acea2d2
1 changed files with 1 additions and 1 deletions
|
|
@ -3085,7 +3085,7 @@ retry_modrdn:;
|
||||||
|
|
||||||
/* NOTE: noSuchObject should result because the new superior
|
/* NOTE: noSuchObject should result because the new superior
|
||||||
* has not been added yet (ITS#6472) */
|
* has not been added yet (ITS#6472) */
|
||||||
if ( rc == LDAP_NO_SUCH_OBJECT && !BER_BVISNULL( op->orr_nnewSup )) {
|
if ( rc == LDAP_NO_SUCH_OBJECT && op->orr_nnewSup != NULL ) {
|
||||||
Operation op2 = *op;
|
Operation op2 = *op;
|
||||||
rc = syncrepl_add_glue_ancestors( &op2, entry );
|
rc = syncrepl_add_glue_ancestors( &op2, entry );
|
||||||
if ( rc == LDAP_SUCCESS ) {
|
if ( rc == LDAP_SUCCESS ) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue