mod_legacyauth: Undo auth on bind fail. Legacy auth is atomic.

This commit is contained in:
Waqas Hussain 2009-09-27 15:30:01 +05:00
parent fba5b67403
commit aa65ea57bd

View file

@ -60,6 +60,7 @@ module:add_iq_handler("c2s_unauthed", "jabber:iq:auth",
success, err_type, err, err_msg = sessionmanager.bind_resource(session, resource);
if not success then
session.send(st.error_reply(stanza, err_type, err, err_msg));
session.username, session.type = nil, "c2s_unauthed"; -- FIXME should this be placed in sessionmanager?
return true;
end
end