mod_saslauth: Fix traceback on attempted login for non-existent users

This commit is contained in:
Matthew Wild 2009-08-05 16:31:56 +01:00
parent 1181b101b5
commit 43ff43e594

View file

@ -77,8 +77,12 @@ local function credentials_callback(mechanism, ...)
function func(x) return x; end function func(x) return x; end
local node, domain, realm, decoder = arg[1], arg[2], arg[3], arg[4]; local node, domain, realm, decoder = arg[1], arg[2], arg[3], arg[4];
local password = usermanager_get_password(node, domain) local password = usermanager_get_password(node, domain)
if decoder then node, realm, password = decoder(node), decoder(realm), decoder(password); end if password then
return func, md5(node..":"..realm..":"..password); if decoder then node, realm, password = decoder(node), decoder(realm), decoder(password); end
return func, md5(node..":"..realm..":"..password);
else
return func, nil;
end
end end
end end