From 444436db15909a91c2b1b2d4153032a13691440b Mon Sep 17 00:00:00 2001
From: Sean Dague
Date: Mon, 8 Dec 2008 17:06:47 +0000
Subject: change a UUID cast to an actual new UUID call to be consistant with
 the rest of the assignments here.

---
 OpenSim/Data/MySQL/MySQLRegionData.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/OpenSim/Data/MySQL/MySQLRegionData.cs b/OpenSim/Data/MySQL/MySQLRegionData.cs
index 4dc0685..b8da7c3 100644
--- a/OpenSim/Data/MySQL/MySQLRegionData.cs
+++ b/OpenSim/Data/MySQL/MySQLRegionData.cs
@@ -1049,7 +1049,7 @@ namespace OpenSim.Data.MySQL
 
             newData.Name = (String) row["Name"];
             newData.Description = (String) row["Description"];
-            newData.OwnerID = (UUID)(String)row["OwnerUUID"];
+            newData.OwnerID = new UUID((String)row["OwnerUUID"]);
             newData.IsGroupOwned = Convert.ToBoolean(row["IsGroupOwned"]);
             newData.Area = Convert.ToInt32(row["Area"]);
             newData.AuctionID = Convert.ToUInt32(row["AuctionID"]); //Unimplemented
-- 
cgit v1.1