diff options
author | Justin Clarke Casey | 2009-01-06 18:06:53 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-01-06 18:06:53 +0000 |
commit | 715a776f7d62d2af7610dbd3137e3e753fdbc25c (patch) | |
tree | 0800abc6a4c7f875c47af19586c79b3aedd79e4c /OpenSim/Grid | |
parent | * Yeah, might just want to add the new class as well - sigh (diff) | |
download | opensim-SC_OLD-715a776f7d62d2af7610dbd3137e3e753fdbc25c.zip opensim-SC_OLD-715a776f7d62d2af7610dbd3137e3e753fdbc25c.tar.gz opensim-SC_OLD-715a776f7d62d2af7610dbd3137e3e753fdbc25c.tar.bz2 opensim-SC_OLD-715a776f7d62d2af7610dbd3137e3e753fdbc25c.tar.xz |
* Move common string aggregation for caps seed path to a method in CapsUtil
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r-- | OpenSim/Grid/UserServer/UserLoginService.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs index a6e0947..deff45e 100644 --- a/OpenSim/Grid/UserServer/UserLoginService.cs +++ b/OpenSim/Grid/UserServer/UserLoginService.cs | |||
@@ -309,9 +309,8 @@ namespace OpenSim.Grid.UserServer | |||
309 | response.RegionX = regionInfo.regionLocX; | 309 | response.RegionX = regionInfo.regionLocX; |
310 | response.RegionY = regionInfo.regionLocY; | 310 | response.RegionY = regionInfo.regionLocY; |
311 | 311 | ||
312 | //Not sure if the + "/CAPS/" should in fact be +"CAPS/" depending if there is already a / as part of httpServerURI | ||
313 | string capsPath = CapsUtil.GetRandomCapsPath(); | 312 | string capsPath = CapsUtil.GetRandomCapsPath(); |
314 | response.SeedCapability = regionInfo.httpServerURI + "CAPS/" + capsPath + "0000/"; | 313 | response.SeedCapability = regionInfo.httpServerURI + CapsUtil.GetCapsSeedPath(capsPath); |
315 | 314 | ||
316 | // Notify the target of an incoming user | 315 | // Notify the target of an incoming user |
317 | m_log.InfoFormat( | 316 | m_log.InfoFormat( |