diff --git a/OpenSim/Capabilities/Caps.cs b/OpenSim/Capabilities/Caps.cs
index 5e89c388f4..7ba65c9a76 100644
--- a/OpenSim/Capabilities/Caps.cs
+++ b/OpenSim/Capabilities/Caps.cs
@@ -136,7 +136,7 @@ namespace OpenSim.Framework.Capabilities
}
m_agentID = agent;
- m_capsHandlers = new CapsHandlers(httpServer, httpListen, httpPort, (httpServer == null) ? false : httpServer.UseSSL);
+ m_capsHandlers = new CapsHandlers(httpServer, httpListen, httpPort);
m_regionName = regionName;
m_capsActive.Reset();
}
diff --git a/OpenSim/Capabilities/CapsHandlers.cs b/OpenSim/Capabilities/CapsHandlers.cs
index 04cede1144..6ec375b268 100644
--- a/OpenSim/Capabilities/CapsHandlers.cs
+++ b/OpenSim/Capabilities/CapsHandlers.cs
@@ -53,31 +53,15 @@ namespace OpenSim.Framework.Capabilities
/// base HTTP server
/// host name of the HTTP server
/// HTTP port
- public CapsHandlers(BaseHttpServer httpListener, string httpListenerHostname, uint httpListenerPort)
- : this(httpListener,httpListenerHostname,httpListenerPort, false)
- {
- }
-
- ///
- /// CapsHandlers is a cap handler container but also takes
- /// care of adding and removing cap handlers to and from the
- /// supplied BaseHttpServer.
- ///
- /// base HTTP server
- /// host name of the HTTP
- /// server
- /// HTTP port
- public CapsHandlers(IHttpServer httpListener, string httpListenerHostname, uint httpListenerPort, bool https)
- {
+ public CapsHandlers(IHttpServer httpListener, string httpListenerHostname, uint httpListenerPort)
+ {
m_httpListener = httpListener;
m_httpListenerHostName = httpListenerHostname;
m_httpListenerPort = httpListenerPort;
- m_useSSL = https;
- if (httpListener != null && m_useSSL)
- {
- m_httpListenerHostName = httpListener.SSLCommonName;
- m_httpListenerPort = httpListener.SSLPort;
- }
+ if (httpListener.UseSSL)
+ m_useSSL = true;
+ else
+ m_useSSL = false;
}
///