aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-03-05 19:32:27 +0000
committerJustin Clarke Casey2009-03-05 19:32:27 +0000
commit6c735e0828063dd6e83dc6bd4c35266dd948035e (patch)
tree9593d8bf7bd700d364924d1d13d51bd564cebb8d /OpenSim/Region/CoreModules/World
parent* remove now unused serialization code (diff)
downloadopensim-SC_OLD-6c735e0828063dd6e83dc6bd4c35266dd948035e.zip
opensim-SC_OLD-6c735e0828063dd6e83dc6bd4c35266dd948035e.tar.gz
opensim-SC_OLD-6c735e0828063dd6e83dc6bd4c35266dd948035e.tar.bz2
opensim-SC_OLD-6c735e0828063dd6e83dc6bd4c35266dd948035e.tar.xz
* Replace some string to byte conversions for object/item name/description fields with the LLUtil function that prevents the max string size from being breached
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
index fe97714..4ae617d 100644
--- a/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
+++ b/OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs
@@ -101,7 +101,7 @@ namespace OpenSim.Region.CoreModules.World.Land
101 101
102 lock (m_scene) 102 lock (m_scene)
103 { 103 {
104 m_scene.LandChannel = (ILandChannel) landChannel; 104 m_scene.LandChannel = (ILandChannel)landChannel;
105 } 105 }
106 } 106 }
107 107