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

neil_a_wilson
11.44.2007 3df898a979356dd70996274d808543c49fc59c67
Update the access control config manager to fix a problem in which it printed
a message claiming that the access control handler was enabled even when it
wasn't.
1 files modified
2 ■■■ changed files
opendj-sdk/opends/src/server/org/opends/server/core/AccessControlConfigManager.java 2 ●●● patch | view | raw | blame | history
opendj-sdk/opends/src/server/org/opends/server/core/AccessControlConfigManager.java
@@ -286,7 +286,7 @@
      }
      // If access control has been disabled put a warning in the log.
      if (newHandlerClass.equals(DefaultAccessControlHandler.class))
      if (newHandlerClass.equals(DefaultAccessControlHandler.class.getName()))
      {
        int msgID = MSGID_CONFIG_AUTHZ_DISABLED;
        String message = getMessage(msgID);