mod_auth_internal_{plain,hashed}: Clarify log messages on initialization

This commit is contained in:
Matthew Wild 2012-03-11 20:56:09 +00:00
parent eca225365d
commit afebf2da34
2 changed files with 2 additions and 2 deletions

View file

@ -54,7 +54,7 @@ local iteration_count = 4096;
function new_hashpass_provider(host)
local provider = { name = "internal_hashed" };
log("debug", "initializing hashpass authentication provider for host '%s'", host);
log("debug", "initializing internal_hashed authentication provider for host '%s'", host);
function provider.test_password(username, password)
local credentials = datamanager.load(username, host, "accounts") or {};