Fix for destruction of unauthed SASL sessions

This commit is contained in:
Matthew Wild 2008-10-04 15:24:52 +01:00
parent 3bac5046af
commit 762a906e36

View file

@ -33,6 +33,7 @@ add_handler("c2s_unauthed", "auth", xmlns_sasl,
local success, err = sessionmanager.make_authenticated(session, username);
if not success then
sessionmanager.destroy_session(session);
return;
end
session.sasl_handler = nil;
session.connhandler = new_connhandler("xmpp-client", session);