aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/LoginService.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2007-12-30 19:40:44 +0000
committerJustin Clarke Casey2007-12-30 19:40:44 +0000
commit76e74a7667867932ef08c0f402dcfc424fb51b0c (patch)
treede5dcfda31943fcf175bcd516bd645d3c95c23f9 /OpenSim/Framework/Communications/LoginService.cs
parentAdded ScriptEngine.RemoteServer module (diff)
downloadopensim-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 '')
-rw-r--r--OpenSim/Framework/Communications/LoginService.cs3
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