Commit ed4a31c5 authored by Dave Cridland's avatar Dave Cridland

Merge pull request #230 from akrherz/of477

OF-477 Correct SASLserver to use consistent digest-uri
parents 5ab215f1 0c8f49e3
...@@ -275,7 +275,7 @@ public class SASLAuthentication { ...@@ -275,7 +275,7 @@ public class SASLAuthentication {
props.put(Sasl.SERVER_AUTH, "TRUE"); props.put(Sasl.SERVER_AUTH, "TRUE");
} }
SaslServer ss = Sasl.createSaslServer(mechanism, "xmpp", SaslServer ss = Sasl.createSaslServer(mechanism, "xmpp",
JiveGlobals.getProperty("xmpp.fqdn", session.getServerName()), props, session.getServerName(), props,
new XMPPCallbackHandler()); new XMPPCallbackHandler());
if (ss == null) { if (ss == null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment