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

Chris Ridd
30.34.2014 d5e770962a3c79d68485d6bb5691cbdac4e741a8
opendj-ldap-sdk/src/main/java/com/forgerock/opendj/util/ASCIICharProp.java
@@ -164,7 +164,7 @@
            this.isDigit = false;
            this.isLetter = false;
            this.isKeyChar = c == '-';
            this.isCompatKeyChar = (c == '-') || (c == '.') || (c == '_');
            this.isCompatKeyChar = (c == '-') || (c == '.') || (c == '_') || (c == '=');
            this.isHexChar = false;
            this.hexValue = -1;
            this.decimalValue = -1;
@@ -255,8 +255,10 @@
     * will be permitted:
     *
     * <pre>
     * USCORE  = %x5F ; underscore ("_")
     * HYPHEN  = %x2D ; hyphen ("-")
     * DOT     = %x2E ; period (".")
     * EQUALS  = %x3D ; equals sign ("=")
     * USCORE  = %x5F ; underscore ("_")
     * </pre>
     *
     * @param allowCompatChars