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

dugan
25.41.2008 f78adc44cb44e75e53b0966585074e76f6e270c9
Fix for issue 3496 SASL/GSSAPI authentication fails over startTLS. Always make the protocol value match what was written in the login.conf file.
1 files modified
2 ■■■ changed files
opends/src/server/org/opends/server/extensions/GSSAPIStateInfo.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/extensions/GSSAPIStateInfo.java
@@ -271,7 +271,7 @@
        saslProperties.put(Sasl.REUSE, "false");
        saslServer = Sasl.createSaslServer(SASL_MECHANISM_GSSAPI, protocol,
        saslServer = Sasl.createSaslServer(SASL_MECHANISM_GSSAPI, "ldap",
                                           serverFQDN, saslProperties, this);
      }
      catch (Exception e)