diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs index a069838..a9359f3 100644 --- a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs +++ b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs | |||
@@ -93,7 +93,7 @@ namespace OpenSim.Services.AuthenticationService | |||
93 | string hashed = Util.Md5Hash(password + ":" + | 93 | string hashed = Util.Md5Hash(password + ":" + |
94 | data.Data["passwordSalt"].ToString()); | 94 | data.Data["passwordSalt"].ToString()); |
95 | 95 | ||
96 | m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString()); | 96 | // m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString()); |
97 | 97 | ||
98 | if (data.Data["passwordHash"].ToString() == hashed) | 98 | if (data.Data["passwordHash"].ToString() == hashed) |
99 | { | 99 | { |