diff options
author | Diva Canto | 2011-02-16 09:57:12 -0800 |
---|---|---|
committer | Diva Canto | 2011-02-16 09:57:12 -0800 |
commit | c6f2d66eae890bae56cdb9acf6b2691fe539b5f0 (patch) | |
tree | 7bb9978c9de4abc23283db2d2ed79ff40b05b811 /OpenSim/Services/AuthenticationService | |
parent | XFF capitalization strikes again -- this time in the XMLRPC method. mantis #5386 (diff) | |
download | opensim-SC_OLD-c6f2d66eae890bae56cdb9acf6b2691fe539b5f0.zip opensim-SC_OLD-c6f2d66eae890bae56cdb9acf6b2691fe539b5f0.tar.gz opensim-SC_OLD-c6f2d66eae890bae56cdb9acf6b2691fe539b5f0.tar.bz2 opensim-SC_OLD-c6f2d66eae890bae56cdb9acf6b2691fe539b5f0.tar.xz |
Fix bug introduced by Query Access. The response does not come in a packaged _Result field, it comes as simple OSDMap with 2 fields in it.
Also in this commit: comment out irrelevant debug message on AuthService.
Diffstat (limited to 'OpenSim/Services/AuthenticationService')
-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 17619ff..2fc9248 100644 --- a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs +++ b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs | |||
@@ -71,7 +71,7 @@ namespace OpenSim.Services.AuthenticationService | |||
71 | string hashed = Util.Md5Hash(password + ":" + | 71 | string hashed = Util.Md5Hash(password + ":" + |
72 | data.Data["passwordSalt"].ToString()); | 72 | data.Data["passwordSalt"].ToString()); |
73 | 73 | ||
74 | m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString()); | 74 | //m_log.DebugFormat("[PASS AUTH]: got {0}; hashed = {1}; stored = {2}", password, hashed, data.Data["passwordHash"].ToString()); |
75 | 75 | ||
76 | if (data.Data["passwordHash"].ToString() == hashed) | 76 | if (data.Data["passwordHash"].ToString() == hashed) |
77 | { | 77 | { |