Typo error in ConnectionMultiplexSession.java

wildfire 3.0 beta, revision 3993

line # 288 ~ 290

if (ClientSession.getTLSPolicy() != Connection.TLSPolicy.required) {

tls.addElement(“required”);

}

should be read as

if (ClientSession.getTLSPolicy() == Connection.TLSPolicy.required) {

tls.addElement(“required”);

}

Hey woloo,

Thanks for the bug fix. It came just in time to answer http://www.jivesoftware.org/community/thread.jspa?threadID=20486. You fix has been included and will be available in the next nightly build.

Regards,

– Gato