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

david_page
28.40.2007 8131f39b9e3dbc3eece96eb92013e6617fdc7494
opends/src/server/org/opends/server/core/BindOperation.java
@@ -1280,7 +1280,7 @@
            // Check to see if the authentication must be done in a secure
            // manner.  If so, then the client connection must be secure.
            if (pwPolicyState.requireSecureAuthentication() &&
            if (pwPolicyState.getPolicy().requireSecureAuthentication() &&
                (! clientConnection.isSecure()))
            {
              int    msgID   = MSGID_BIND_OPERATION_INSECURE_SIMPLE_BIND;
@@ -1820,7 +1820,7 @@
              break bindProcessing;
            }
            if (pwPolicyState.requireSecureAuthentication() &&
            if (pwPolicyState.getPolicy().requireSecureAuthentication() &&
                (! clientConnection.isSecure()) &&
                (! saslHandler.isSecure(saslMechanism)))
            {