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

ludovicp
09.36.2009 8c33dbadc5956b017e718eafa506397c0c5593ab
Fixes issue 3699 when OpenDS would not send the password Expired Control during a Bind operation, if the password has been reset and must be changed by the user.
1 files modified
4 ■■■■ changed files
opends/src/server/org/opends/server/workflowelement/localbackend/LocalBackendBindOperation.java 4 ●●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/workflowelement/localbackend/LocalBackendBindOperation.java
@@ -391,6 +391,10 @@
        {
          addResponseControl(new PasswordExpiringControl(pwPolicyWarningValue));
        }
        else if (mustChangePassword)
        {
          addResponseControl(new PasswordExpiredControl());
        }
      }
    }
    else