Software /
code /
prosody
Diff
core/usermanager.lua @ 2999:9a8f942433c4
usermanager: Give the default auth provider a name, you'll never guess what it is.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 05 May 2010 14:17:01 +0100 |
parent | 2987:0acfae4da199 |
child | 3030:2be7801474fb |
line wrap: on
line diff
--- a/core/usermanager.lua Wed May 05 11:29:10 2010 +0100 +++ b/core/usermanager.lua Wed May 05 14:17:01 2010 +0100 @@ -40,7 +40,7 @@ local function is_cyrus(host) return config.get(host, "core", "sasl_backend") == "cyrus"; end function new_default_provider(host) - local provider = {}; + local provider = { name = "default" }; function provider.test_password(username, password) if is_cyrus(host) then return nil, "Legacy auth not supported with Cyrus SASL."; end