aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities/Caps.cs
diff options
context:
space:
mode:
authorUbitUmarov2016-12-06 07:26:26 +0000
committerUbitUmarov2016-12-06 07:26:26 +0000
commit8db69d2e02b13edb348a13a33c82eda3f7124636 (patch)
tree20bb771cbbdbbaa62387dc47cfb79085e55d53b2 /OpenSim/Capabilities/Caps.cs
parentHG: fix the never ending avatar confirmation when 2 users from same grid made... (diff)
downloadopensim-SC-8db69d2e02b13edb348a13a33c82eda3f7124636.zip
opensim-SC-8db69d2e02b13edb348a13a33c82eda3f7124636.tar.gz
opensim-SC-8db69d2e02b13edb348a13a33c82eda3f7124636.tar.bz2
opensim-SC-8db69d2e02b13edb348a13a33c82eda3f7124636.tar.xz
remove redundante check for ssl listener
Diffstat (limited to 'OpenSim/Capabilities/Caps.cs')
-rw-r--r--OpenSim/Capabilities/Caps.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Capabilities/Caps.cs b/OpenSim/Capabilities/Caps.cs
index 5e89c38..7ba65c9 100644
--- a/OpenSim/Capabilities/Caps.cs
+++ b/OpenSim/Capabilities/Caps.cs
@@ -136,7 +136,7 @@ namespace OpenSim.Framework.Capabilities
136 } 136 }
137 137
138 m_agentID = agent; 138 m_agentID = agent;
139 m_capsHandlers = new CapsHandlers(httpServer, httpListen, httpPort, (httpServer == null) ? false : httpServer.UseSSL); 139 m_capsHandlers = new CapsHandlers(httpServer, httpListen, httpPort);
140 m_regionName = regionName; 140 m_regionName = regionName;
141 m_capsActive.Reset(); 141 m_capsActive.Reset();
142 } 142 }