Changeset

4603:6900c9484834

mod_auth_internal_{plain,hashed}: Clarify log messages on initialization
author Matthew Wild <mwild1@gmail.com>
date Sun, 11 Mar 2012 20:56:09 +0000
parents 4602:ba898af15de5
children 4604:eef5e3a83792
files plugins/mod_auth_internal_hashed.lua plugins/mod_auth_internal_plain.lua
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_auth_internal_hashed.lua	Sun Mar 11 20:16:57 2012 +0100
+++ b/plugins/mod_auth_internal_hashed.lua	Sun Mar 11 20:56:09 2012 +0000
@@ -54,7 +54,7 @@
 
 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 {};
--- a/plugins/mod_auth_internal_plain.lua	Sun Mar 11 20:16:57 2012 +0100
+++ b/plugins/mod_auth_internal_plain.lua	Sun Mar 11 20:56:09 2012 +0000
@@ -23,7 +23,7 @@
 
 function new_default_provider(host)
 	local provider = { name = "internal_plain" };
-	log("debug", "initializing default authentication provider for host '%s'", host);
+	log("debug", "initializing internal_plain authentication provider for host '%s'", host);
 
 	function provider.test_password(username, password)
 		log("debug", "test password '%s' for user %s at host %s", password, username, module.host);