mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noël Rouvignac
03.32.2016 eaee3f6a42c1a129f07e2364a4c32c59b9e03e19
opendj-server-legacy/src/main/java/org/opends/server/replication/plugin/LDAPReplicationDomain.java
@@ -71,6 +71,7 @@
import org.forgerock.i18n.slf4j.LocalizedLogger;
import org.forgerock.opendj.config.server.ConfigChangeResult;
import org.forgerock.opendj.config.server.ConfigException;
import org.forgerock.opendj.ldap.AVA;
import org.forgerock.opendj.ldap.ByteString;
import org.forgerock.opendj.ldap.DecodeException;
import org.forgerock.opendj.ldap.ModificationType;
@@ -1130,9 +1131,9 @@
    RDN newRdn = modifyDNOperation.getNewRDN();
    // Go through each attribute of the old RDN
    for (int i=0 ; i<rdn.getNumValues() ; i++)
    for (AVA ava : rdn)
    {
      AttributeType attributeType = rdn.getAttributeType(i);
      AttributeType attributeType = ava.getAttributeType();
      // Is it present in the fractional attributes established list ?
      boolean foundAttribute =
          fractionalConcernedAttributes.contains(attributeType);