Software /
code /
prosody
Changeset
3177:b932dde3bca5
usermanager: Rename the fallback provider from 'dummyauth' to 'null'
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 04 Jun 2010 13:54:15 +0100 |
parents | 3176:f77759710324 |
children | 3178:46f5ed897beb |
files | core/usermanager.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/usermanager.lua Fri Jun 04 13:53:07 2010 +0100 +++ b/core/usermanager.lua Fri Jun 04 13:54:15 2010 +0100 @@ -26,7 +26,7 @@ function new_null_provider() local function dummy() end; - return setmetatable({name = "dummyauth"}, { __index = function() return dummy; end }); + return setmetatable({name = "null"}, { __index = function() return dummy; end }); end local function host_handler(host)