diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index 905f4aa..7dce157 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -86,7 +86,7 @@ namespace OpenSim.Grid.UserServer | |||
86 | RegionProfileData SimInfo; | 86 | RegionProfileData SimInfo; |
87 | try | 87 | try |
88 | { | 88 | { |
89 | SimInfo = RegionProfileData.RequestSimProfileData( | 89 | SimInfo = RegionProfileService.RequestSimProfileData( |
90 | theUser.CurrentAgent.Handle, m_config.GridServerURL, | 90 | theUser.CurrentAgent.Handle, m_config.GridServerURL, |
91 | m_config.GridSendKey, m_config.GridRecvKey); | 91 | m_config.GridSendKey, m_config.GridRecvKey); |
92 | 92 | ||
@@ -302,20 +302,20 @@ namespace OpenSim.Grid.UserServer | |||
302 | 302 | ||
303 | protected RegionProfileData RequestClosestRegion(string region) | 303 | protected RegionProfileData RequestClosestRegion(string region) |
304 | { | 304 | { |
305 | return RegionProfileData.RequestSimProfileData(region, | 305 | return RegionProfileService.RequestSimProfileData(region, |
306 | m_config.GridServerURL, m_config.GridSendKey, m_config.GridRecvKey); | 306 | m_config.GridServerURL, m_config.GridSendKey, m_config.GridRecvKey); |
307 | } | 307 | } |
308 | 308 | ||
309 | protected RegionProfileData GetRegionInfo(ulong homeRegionHandle) | 309 | protected RegionProfileData GetRegionInfo(ulong homeRegionHandle) |
310 | { | 310 | { |
311 | return RegionProfileData.RequestSimProfileData(homeRegionHandle, | 311 | return RegionProfileService.RequestSimProfileData(homeRegionHandle, |
312 | m_config.GridServerURL, m_config.GridSendKey, | 312 | m_config.GridServerURL, m_config.GridSendKey, |
313 | m_config.GridRecvKey); | 313 | m_config.GridRecvKey); |
314 | } | 314 | } |
315 | 315 | ||
316 | protected RegionProfileData GetRegionInfo(UUID homeRegionId) | 316 | protected RegionProfileData GetRegionInfo(UUID homeRegionId) |
317 | { | 317 | { |
318 | return RegionProfileData.RequestSimProfileData(homeRegionId, | 318 | return RegionProfileService.RequestSimProfileData(homeRegionId, |
319 | m_config.GridServerURL, m_config.GridSendKey, | 319 | m_config.GridServerURL, m_config.GridSendKey, |
320 | m_config.GridRecvKey); | 320 | m_config.GridRecvKey); |
321 | } | 321 | } |