aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorUbitUmarov2018-11-17 20:46:09 +0000
committerUbitUmarov2018-11-17 20:46:09 +0000
commit6e98272f0d882b6f13893de1baecfcbaf71b03db (patch)
treefb6be209c8a68f2200687c0b0a6d33bc5ecfbf6f /OpenSim
parentcode aesthetics (diff)
downloadopensim-SC-6e98272f0d882b6f13893de1baecfcbaf71b03db.zip
opensim-SC-6e98272f0d882b6f13893de1baecfcbaf71b03db.tar.gz
opensim-SC-6e98272f0d882b6f13893de1baecfcbaf71b03db.tar.bz2
opensim-SC-6e98272f0d882b6f13893de1baecfcbaf71b03db.tar.xz
code aesthetics
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Services/LLLoginService/LLLoginService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs
index 19e4beb..0438673 100644
--- a/OpenSim/Services/LLLoginService/LLLoginService.cs
+++ b/OpenSim/Services/LLLoginService/LLLoginService.cs
@@ -778,11 +778,11 @@ namespace OpenSim.Services.LLLoginService
778 string domainLocator = parts[1]; 778 string domainLocator = parts[1];
779 parts = domainLocator.Split(new char[] {':'}); 779 parts = domainLocator.Split(new char[] {':'});
780 string domainName = parts[0]; 780 string domainName = parts[0];
781 uint port = 0; 781 uint regionport = 0;
782 if (parts.Length > 1) 782 if (parts.Length > 1)
783 UInt32.TryParse(parts[1], out port); 783 UInt32.TryParse(parts[1], out regionport);
784 784
785 region = FindForeignRegion(domainName, port, regionName, account, out gatekeeper); 785 region = FindForeignRegion(domainName, regionport, regionName, account, out gatekeeper);
786 return region; 786 return region;
787 } 787 }
788 } 788 }