1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-07-02 16:26:46 +02:00

SMACK-324 removed non base64 char from SASL response packet.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@12372 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Holger Bergunde 2011-05-12 07:32:46 +00:00 committed by holger.bergunde
parent 84c43c4fdd
commit 3558b1bbcb

View file

@ -263,9 +263,6 @@ public abstract class SASLMechanism implements CallbackHandler {
if (authenticationText != null) { if (authenticationText != null) {
stanza.append(authenticationText); stanza.append(authenticationText);
} }
else {
stanza.append("=");
}
stanza.append("</response>"); stanza.append("</response>");
return stanza.toString(); return stanza.toString();
} }