aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/LLLoginService
diff options
context:
space:
mode:
authorUbitUmarov2015-08-28 20:49:29 +0100
committerUbitUmarov2015-08-28 20:49:29 +0100
commitee4f61fe34b2ec716893c9bbb2899122054171f2 (patch)
treeb88fbab11e1299b17a96f983464b8b740d45acb1 /OpenSim/Services/LLLoginService
parent review gridservice module. Not merged os code for varsize, since that (diff)
downloadopensim-SC_OLD-ee4f61fe34b2ec716893c9bbb2899122054171f2.zip
opensim-SC_OLD-ee4f61fe34b2ec716893c9bbb2899122054171f2.tar.gz
opensim-SC_OLD-ee4f61fe34b2ec716893c9bbb2899122054171f2.tar.bz2
opensim-SC_OLD-ee4f61fe34b2ec716893c9bbb2899122054171f2.tar.xz
review llLoginService for var support
Diffstat (limited to 'OpenSim/Services/LLLoginService')
-rw-r--r--OpenSim/Services/LLLoginService/LLLoginService.cs9
1 files changed, 1 insertions, 8 deletions
diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs
index c833131..b009e64 100644
--- a/OpenSim/Services/LLLoginService/LLLoginService.cs
+++ b/OpenSim/Services/LLLoginService/LLLoginService.cs
@@ -880,13 +880,6 @@ namespace OpenSim.Services.LLLoginService
880 SetServiceURLs(aCircuit, account); 880 SetServiceURLs(aCircuit, account);
881 881
882 return aCircuit; 882 return aCircuit;
883
884 //m_UserAgentService.LoginAgentToGrid(aCircuit, GatekeeperServiceConnector, region, out reason);
885 //if (simConnector.CreateAgent(region, aCircuit, 0, out reason))
886 // return aCircuit;
887
888 //return null;
889
890 } 883 }
891 884
892 private void SetServiceURLs(AgentCircuitData aCircuit, UserAccount account) 885 private void SetServiceURLs(AgentCircuitData aCircuit, UserAccount account)
@@ -921,7 +914,7 @@ namespace OpenSim.Services.LLLoginService
921 if (!keyValue.EndsWith("/")) 914 if (!keyValue.EndsWith("/"))
922 keyValue = keyValue + "/"; 915 keyValue = keyValue + "/";
923 916
924 if (!account.ServiceURLs.ContainsKey(keyName) || (account.ServiceURLs.ContainsKey(keyName) && account.ServiceURLs[keyName] != keyValue)) 917 if (!account.ServiceURLs.ContainsKey(keyName) || (account.ServiceURLs.ContainsKey(keyName) && (string)account.ServiceURLs[keyName] != keyValue))
925 { 918 {
926 account.ServiceURLs[keyName] = keyValue; 919 account.ServiceURLs[keyName] = keyValue;
927 newUrls = true; 920 newUrls = true;