fix wrong cert ip compare
parent
6609965f6e
commit
117e6ec266
OpenSim/Framework/Servers/HttpServer
|
@ -295,7 +295,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
{
|
{
|
||||||
foreach(string ip in m_certIPs)
|
foreach(string ip in m_certIPs)
|
||||||
{
|
{
|
||||||
if (String.Compare(hostname, ip, true, CultureInfo.InvariantCulture) != 0)
|
if (String.Compare(hostname, ip, true, CultureInfo.InvariantCulture) == 0)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue