aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server
diff options
context:
space:
mode:
authorJeff Ames2010-02-15 19:15:03 +0900
committerJeff Ames2010-02-15 19:21:56 +0900
commitaf265e001d3bf043590e480cd6574a14193f6de0 (patch)
tree168217a56ba0d25d0fa063df6c27f8cbdca4bf67 /OpenSim/Server
parentFixes a bug in the previous patch. (diff)
downloadopensim-SC_OLD-af265e001d3bf043590e480cd6574a14193f6de0.zip
opensim-SC_OLD-af265e001d3bf043590e480cd6574a14193f6de0.tar.gz
opensim-SC_OLD-af265e001d3bf043590e480cd6574a14193f6de0.tar.bz2
opensim-SC_OLD-af265e001d3bf043590e480cd6574a14193f6de0.tar.xz
Formatting cleanup.
Diffstat (limited to 'OpenSim/Server')
-rw-r--r--OpenSim/Server/Handlers/Inventory/XInventoryInConnector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/Inventory/XInventoryInConnector.cs b/OpenSim/Server/Handlers/Inventory/XInventoryInConnector.cs
index c7d5ff1..03d4d7a 100644
--- a/OpenSim/Server/Handlers/Inventory/XInventoryInConnector.cs
+++ b/OpenSim/Server/Handlers/Inventory/XInventoryInConnector.cs
@@ -197,7 +197,7 @@ namespace OpenSim.Server.Handlers.Asset
197 if (!request.ContainsKey("PRINCIPAL")) 197 if (!request.ContainsKey("PRINCIPAL"))
198 return FailureResult(); 198 return FailureResult();
199 199
200 if(m_InventoryService.CreateUserInventory(new UUID(request["PRINCIPAL"].ToString()))) 200 if (m_InventoryService.CreateUserInventory(new UUID(request["PRINCIPAL"].ToString())))
201 result["RESULT"] = "True"; 201 result["RESULT"] = "True";
202 else 202 else
203 result["RESULT"] = "False"; 203 result["RESULT"] = "False";