aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/AuthenticationService
diff options
context:
space:
mode:
authorMelanie2011-11-11 23:43:18 +0000
committerMelanie2011-11-11 23:43:18 +0000
commita4ec97cfddc6baeed2eb5ed08240a7f9fb300d1e (patch)
treef19e00c12dfe753ee218eccd98b5a21304018247 /OpenSim/Services/AuthenticationService
parentMerge branch 'master' into bigmerge (diff)
parentMake log messages on authentication failure more explicit (diff)
downloadopensim-SC_OLD-a4ec97cfddc6baeed2eb5ed08240a7f9fb300d1e.zip
opensim-SC_OLD-a4ec97cfddc6baeed2eb5ed08240a7f9fb300d1e.tar.gz
opensim-SC_OLD-a4ec97cfddc6baeed2eb5ed08240a7f9fb300d1e.tar.bz2
opensim-SC_OLD-a4ec97cfddc6baeed2eb5ed08240a7f9fb300d1e.tar.xz
Merge branch 'master' into bigmerge
Conflicts: OpenSim/Region/Framework/Scenes/ScenePresence.cs OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs
Diffstat (limited to 'OpenSim/Services/AuthenticationService')
-rw-r--r--OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs
index cf7496f..d5a6521 100644
--- a/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs
+++ b/OpenSim/Services/AuthenticationService/PasswordAuthenticationService.cs
@@ -125,6 +125,13 @@ namespace OpenSim.Services.AuthenticationService
125 m_log.DebugFormat("[PASS AUTH]: {0} {1} impersonating {2}, proceeding with login", a.FirstName, a.LastName, principalID); 125 m_log.DebugFormat("[PASS AUTH]: {0} {1} impersonating {2}, proceeding with login", a.FirstName, a.LastName, principalID);
126 return GetToken(principalID, lifetime); 126 return GetToken(principalID, lifetime);
127 } 127 }
128 else
129 {
130 m_log.DebugFormat(
131 "[AUTH SERVICE]: Salted hash {0} of given password did not match salted hash of {1} for PrincipalID {2}. Authentication failure.",
132 principalID);
133 return String.Empty;
134 }
128 } 135 }
129 136
130 m_log.DebugFormat("[PASS AUTH]: Impersonation of {0} failed", principalID); 137 m_log.DebugFormat("[PASS AUTH]: Impersonation of {0} failed", principalID);