mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 17:19:43 -05:00
reintroduce changes made in tools/slapadd.c v1.64 (looks like missing during code move)
This commit is contained in:
parent
855c22d862
commit
c1b50022e5
1 changed files with 5 additions and 3 deletions
|
|
@ -308,7 +308,8 @@ slapadd( int argc, char **argv )
|
|||
}
|
||||
}
|
||||
|
||||
if ( update_ctxcsn == SLAP_TOOL_CTXCSN_KEEP ) {
|
||||
if ( update_ctxcsn == SLAP_TOOL_CTXCSN_KEEP &&
|
||||
( replica_promotion || replica_demotion )) {
|
||||
if ( is_entry_syncProviderSubentry( e )) {
|
||||
if ( !LDAP_SLIST_EMPTY( &consumer_subentry )) {
|
||||
fprintf( stderr, "%s: consumer and provider subentries "
|
||||
|
|
@ -402,8 +403,9 @@ slapadd( int argc, char **argv )
|
|||
}
|
||||
}
|
||||
|
||||
if ( !is_entry_syncProviderSubentry( e ) &&
|
||||
!is_entry_syncConsumerSubentry( e )) {
|
||||
if (( !is_entry_syncProviderSubentry( e ) &&
|
||||
!is_entry_syncConsumerSubentry( e )) ||
|
||||
( !replica_promotion && !replica_demotion )) {
|
||||
if (!dryrun) {
|
||||
ID id = be->be_entry_put( be, e, &bvtext );
|
||||
if( id == NOID ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue