aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs2
-rw-r--r--OpenSim/Region/Communications/Local/CommunicationsLocal.cs2
2 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index 1029d90..4a02264 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -383,7 +383,7 @@ namespace OpenSim
383 LocalBackEndServices backendService = new LocalBackEndServices(); 383 LocalBackEndServices backendService = new LocalBackEndServices();
384 384
385 CommunicationsLocal localComms = 385 CommunicationsLocal localComms =
386 new CommunicationsLocal(m_networkServersInfo, m_httpServer, m_assetCache, userService, 386 new CommunicationsLocal(m_networkServersInfo, m_httpServer, m_assetCache, userService, userService,
387 inventoryService, backendService, backendService, m_dumpAssetsToFile); 387 inventoryService, backendService, backendService, m_dumpAssetsToFile);
388 m_commsManager = localComms; 388 m_commsManager = localComms;
389 389
diff --git a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs
index 6793889..c79979c 100644
--- a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs
+++ b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs
@@ -39,6 +39,7 @@ namespace OpenSim.Region.Communications.Local
39 BaseHttpServer httpServer, 39 BaseHttpServer httpServer,
40 AssetCache assetCache, 40 AssetCache assetCache,
41 IUserService userService, 41 IUserService userService,
42 IUserServiceAdmin userServiceAdmin,
42 LocalInventoryService inventoryService, 43 LocalInventoryService inventoryService,
43 IInterRegionCommunications interRegionService, 44 IInterRegionCommunications interRegionService,
44 IGridServices gridService, bool dumpAssetsToFile) 45 IGridServices gridService, bool dumpAssetsToFile)
@@ -48,6 +49,7 @@ namespace OpenSim.Region.Communications.Local
48 m_defaultInventoryHost = inventoryService.Host; 49 m_defaultInventoryHost = inventoryService.Host;
49 m_interServiceInventoryService = inventoryService; 50 m_interServiceInventoryService = inventoryService;
50 m_userService = userService; 51 m_userService = userService;
52 m_userServiceAdmin = userServiceAdmin;
51 m_avatarService = (IAvatarService)userService; 53 m_avatarService = (IAvatarService)userService;
52 m_gridService = gridService; 54 m_gridService = gridService;
53 m_interRegion = interRegionService; 55 m_interRegion = interRegionService;