aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_legacyauth.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2009-08-13 16:53:18 +0500
committerWaqas Hussain <waqas20@gmail.com>2009-08-13 16:53:18 +0500
commit0373133890c7122a3979253dd402829bf732ee2a (patch)
tree4897c3783466063e4b35401eb576d0e28b2034f2 /plugins/mod_legacyauth.lua
parent3ede8212ce557af2e2f7e08b16a84601b8754d71 (diff)
downloadprosody-0373133890c7122a3979253dd402829bf732ee2a.tar.gz
prosody-0373133890c7122a3979253dd402829bf732ee2a.zip
mod_legacyauth: Added a FIXME
Diffstat (limited to 'plugins/mod_legacyauth.lua')
-rw-r--r--plugins/mod_legacyauth.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_legacyauth.lua b/plugins/mod_legacyauth.lua
index 3d27ba71..9a9c3902 100644
--- a/plugins/mod_legacyauth.lua
+++ b/plugins/mod_legacyauth.lua
@@ -53,7 +53,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));
- return true;
+ return true; -- FIXME need to unauthenticate here
end
end
session.send(st.reply(stanza));