diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:26:53 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-05-06 19:26:53 +0100 |
commit | daec51c435ca77914271200607841d55ff7408d7 (patch) | |
tree | 15f1682fbc9c2ea904651bcc59e99d2397b0d4a8 /core/usermanager.lua | |
parent | ba96c2f7db5ce079d7609dff90591b9872ba6143 (diff) | |
parent | a540d613cd08b8feee096d19b727d1f5b2cab507 (diff) | |
download | prosody-daec51c435ca77914271200607841d55ff7408d7.tar.gz prosody-daec51c435ca77914271200607841d55ff7408d7.zip |
Merge 0.10->trunk
Diffstat (limited to 'core/usermanager.lua')
-rw-r--r-- | core/usermanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/usermanager.lua b/core/usermanager.lua index 900531ca..3a2b23a2 100644 --- a/core/usermanager.lua +++ b/core/usermanager.lua @@ -29,7 +29,7 @@ function new_null_provider() local function dummy() return nil, "method not implemented"; end; local function dummy_get_sasl_handler() return sasl_new(nil, {}); end return setmetatable({name = "null", get_sasl_handler = dummy_get_sasl_handler}, { - __index = function(self, method) return dummy; end + __index = function(self, method) return dummy; end --luacheck: ignore 212 }); end |