aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-07-08 18:48:22 +0100
committerMatthew Wild <mwild1@gmail.com>2012-07-08 18:48:22 +0100
commited8cf4230df5d2b6d5118cd0912c285e00d9331a (patch)
treee1506652c104ab88979a3d5527ce9e236f474b30 /plugins
parentd7bbafcd372997dbec05e0dec67c1da41968050f (diff)
downloadprosody-ed8cf4230df5d2b6d5118cd0912c285e00d9331a.tar.gz
prosody-ed8cf4230df5d2b6d5118cd0912c285e00d9331a.zip
Backed out changeset 72a2eec4204a (incomplete fix)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_auth_anonymous.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/mod_auth_anonymous.lua b/plugins/mod_auth_anonymous.lua
index 3cb7cf98..c080177d 100644
--- a/plugins/mod_auth_anonymous.lua
+++ b/plugins/mod_auth_anonymous.lua
@@ -32,10 +32,9 @@ function new_default_provider(host)
return nil, "Account creation/modification not supported.";
end
- function provider.get_sasl_handler(session)
+ function provider.get_sasl_handler()
local anonymous_authentication_profile = {
anonymous = function(sasl, username, realm)
- session.roster = {}; -- so that the null storage backend doesn't upset rostermanager
return true; -- for normal usage you should always return true here
end
};