aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-12-18 15:59:48 +0000
committerJustin Clarke Casey2008-12-18 15:59:48 +0000
commit3a1b3ce32d66ae5af32707b5fcea2c47c6751c08 (patch)
treee9c276f0e106dd4e851e88b356b79603430a16c7 /OpenSim
parentStop hacked godmode from being able to actually move other people's (diff)
downloadopensim-SC_OLD-3a1b3ce32d66ae5af32707b5fcea2c47c6751c08.zip
opensim-SC_OLD-3a1b3ce32d66ae5af32707b5fcea2c47c6751c08.tar.gz
opensim-SC_OLD-3a1b3ce32d66ae5af32707b5fcea2c47c6751c08.tar.bz2
opensim-SC_OLD-3a1b3ce32d66ae5af32707b5fcea2c47c6751c08.tar.xz
* Apply http://opensimulator.org/mantis/view.php?id=2810
* Fix set up of master avatar on a fresh OpenSim install * Turns out we had started hashing the password too many times. Thanks jonc!
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Framework/RegionInfo.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs
index cac68d9..a53bfbe 100644
--- a/OpenSim/Framework/RegionInfo.cs
+++ b/OpenSim/Framework/RegionInfo.cs
@@ -521,8 +521,7 @@ namespace OpenSim.Framework
521 MasterAvatarLastName = (string) configuration_result; 521 MasterAvatarLastName = (string) configuration_result;
522 break; 522 break;
523 case "master_avatar_pass": 523 case "master_avatar_pass":
524 string tempMD5Passwd = (string) configuration_result; 524 MasterAvatarSandboxPassword = (string)configuration_result;
525 MasterAvatarSandboxPassword = Util.Md5Hash(Util.Md5Hash(tempMD5Passwd) + ":" + String.Empty);
526 break; 525 break;
527 case "lastmap_uuid": 526 case "lastmap_uuid":
528 lastMapUUID = (UUID)configuration_result; 527 lastMapUUID = (UUID)configuration_result;