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

matthew_swift
03.39.2006 59685c84348f8d71dc3bbd3513c5eb10cc738a8e
opends/src/server/org/opends/server/protocols/jmx/JmxConnectionHandler.java
@@ -337,7 +337,7 @@
    // in the current entry.
    // Always return true as the check will be performed by the
    // hasAcceptableConfiguration call
    if (configEntry.getDN().compareTo(configEntryDN) == 0)
    if (configEntry.getDN().equals(configEntryDN))
    {
      return true;
    }
@@ -370,7 +370,7 @@
    //
    // We are checking first if we are dealing with a change
    // in the current entry.
    if (configEntry.getDN().compareTo(configEntryDN) == 0)
    if (configEntry.getDN().equals(configEntryDN))
    {
      ArrayList<String> messages = new ArrayList<String>();
      return new ConfigChangeResult(ResultCode.SUCCESS, false, messages);