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

Jean-Noël Rouvignac
05.31.2016 2a20cb6cc04bc9f5917a50a68ba1e91cc8b606b0
opendj-server-legacy/src/main/java/org/opends/server/admin/ManagedObjectPath.java
@@ -143,7 +143,7 @@
      String type = profile.getRelationChildRDNType(r);
      AttributeType atype = DirectoryServer.getAttributeType(type);
      ByteString avalue = ByteString.valueOfUtf8(name);
      dn = dn.child(RDN.create(atype, avalue));
      dn = dn.child(new RDN(atype, avalue));
    }
@@ -160,7 +160,7 @@
      String type = profile.getRelationChildRDNType(r);
      AttributeType atype = DirectoryServer.getAttributeType(type);
      ByteString avalue = ByteString.valueOfUtf8(d.getName());
      dn = dn.child(RDN.create(atype, avalue));
      dn = dn.child(new RDN(atype, avalue));
    }