fix wrong cert ip compare
parent
6609965f6e
commit
117e6ec266
|
@ -295,7 +295,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
|||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue