diff options
author | Justin Clarke Casey | 2007-12-30 19:40:44 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2007-12-30 19:40:44 +0000 |
commit | 76e74a7667867932ef08c0f402dcfc424fb51b0c (patch) | |
tree | de5dcfda31943fcf175bcd516bd645d3c95c23f9 /OpenSim/Framework/Communications/LoginService.cs | |
parent | Added ScriptEngine.RemoteServer module (diff) | |
download | opensim-SC_OLD-76e74a7667867932ef08c0f402dcfc424fb51b0c.zip opensim-SC_OLD-76e74a7667867932ef08c0f402dcfc424fb51b0c.tar.gz opensim-SC_OLD-76e74a7667867932ef08c0f402dcfc424fb51b0c.tar.bz2 opensim-SC_OLD-76e74a7667867932ef08c0f402dcfc424fb51b0c.tar.xz |
Add an extra check that we don't create new inventory folders for a user that already has a root folder
Diffstat (limited to 'OpenSim/Framework/Communications/LoginService.cs')
-rw-r--r-- | OpenSim/Framework/Communications/LoginService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs index a284910..bef20f7 100644 --- a/OpenSim/Framework/Communications/LoginService.cs +++ b/OpenSim/Framework/Communications/LoginService.cs | |||
@@ -214,7 +214,8 @@ namespace OpenSim.Framework.UserManagement | |||
214 | /// <returns>Authenticated?</returns> | 214 | /// <returns>Authenticated?</returns> |
215 | public virtual bool AuthenticateUser(UserProfileData profile, string password) | 215 | public virtual bool AuthenticateUser(UserProfileData profile, string password) |
216 | { | 216 | { |
217 | MainLog.Instance.Verbose("LOGIN", "Authenticating " + profile.username + " " + profile.surname); | 217 | MainLog.Instance.Verbose( |
218 | "LOGIN", "Authenticating {0} {1} ({2})", profile.username, profile.surname, profile.UUID); | ||
218 | 219 | ||
219 | password = password.Remove(0, 3); //remove $1$ | 220 | password = password.Remove(0, 3); //remove $1$ |
220 | 221 | ||