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

matthew_swift
03.39.2006 59685c84348f8d71dc3bbd3513c5eb10cc738a8e
opends/src/server/org/opends/server/core/PersistentSearch.java
@@ -221,7 +221,7 @@
        }
        break;
      case SINGLE_LEVEL:
        if (! baseDN.equals(entry.getDN().getParent()))
        if (! baseDN.equals(entry.getDN().getParentDNInSuffix()))
        {
          return;
        }
@@ -331,7 +331,7 @@
        }
        break;
      case SINGLE_LEVEL:
        if (! baseDN.equals(entry.getDN().getParent()))
        if (! baseDN.equals(entry.getDN().getParentDNInSuffix()))
        {
          return;
        }
@@ -444,7 +444,7 @@
        }
        break;
      case SINGLE_LEVEL:
        if (! baseDN.equals(oldEntry.getDN().getParent()))
        if (! baseDN.equals(oldEntry.getDN().getParentDNInSuffix()))
        {
          return;
        }
@@ -567,8 +567,8 @@
        break;
      case SINGLE_LEVEL:
        oldMatches = baseDN.equals(oldEntry.getDN().getParent());
        newMatches = baseDN.equals(newEntry.getDN().getParent());
        oldMatches = baseDN.equals(oldEntry.getDN().getParentDNInSuffix());
        newMatches = baseDN.equals(newEntry.getDN().getParentDNInSuffix());
        if (! (oldMatches || newMatches))
        {