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

Jean-Noël Rouvignac
10.31.2016 c70f83faf35bebaa246e24249a2c3b0ca7392745
opendj-server-legacy/src/main/java/org/opends/server/api/Backend.java
@@ -951,7 +951,7 @@
  {
    for (DN dn : getBaseDNs())
    {
      if (entryDN.isDescendantOf(dn))
      if (entryDN.isSubordinateOrEqualTo(dn))
      {
        for (Backend<?> b : subordinateBackends)
        {
@@ -983,7 +983,7 @@
  {
    for (DN baseDN : baseDNs)
    {
      if (entryDN.isDescendantOf(baseDN) && !isExcluded(excludeDNs, entryDN))
      if (entryDN.isSubordinateOrEqualTo(baseDN) && !isExcluded(excludeDNs, entryDN))
      {
        return true;
      }
@@ -999,7 +999,7 @@
    }
    for (DN excludeDN : excludeDNs)
    {
      if (entryDN.isDescendantOf(excludeDN))
      if (entryDN.isSubordinateOrEqualTo(excludeDN))
      {
        return true;
      }