# HG changeset patch # User Matthew Wild # Date 1273065421 -3600 # Node ID 9a8f942433c462ee8686ecb81bfd5ea495ec00fb # Parent 36c169ed157648bbdf0c6251c8cccc76e4921c5c usermanager: Give the default auth provider a name, you'll never guess what it is. diff -r 36c169ed1576 -r 9a8f942433c4 core/usermanager.lua --- 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