From 8779ff3c8f01550ecff822696eafbfef708743af Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Sat, 4 Feb 2012 02:00:35 +0000 Subject: [PATCH] Supply correct parameters to detailed authentication login fail message --- .../AuthenticationService/PasswordAuthenticationService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs index 14d96cb3f4..48eb3f8efe 100644 --- a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs +++ b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs @@ -90,7 +90,7 @@ namespace OpenSim.Services.AuthenticationService { m_log.DebugFormat( "[AUTH SERVICE]: Salted hash {0} of given password did not match salted hash of {1} for PrincipalID {2}. Authentication failure.", - principalID); + hashed, data.Data["passwordHash"], principalID); return String.Empty; } }