зеркало из https://github.com/mozilla/pjs.git
Bug 453466 - in ff3 an imported self-signed server certificate can't be marked trusted (edit button disabled), r=honzab
This commit is contained in:
Родитель
4596cdf3f9
Коммит
5139b35f8c
|
@ -903,10 +903,12 @@ void
|
|||
nsCertOverrideService::GetHostWithPort(const nsACString & aHostName, PRInt32 aPort, nsACString& _retval)
|
||||
{
|
||||
nsCAutoString hostPort(aHostName);
|
||||
if (aPort == -1)
|
||||
if (aPort == -1) {
|
||||
aPort = 443;
|
||||
hostPort.AppendLiteral(":");
|
||||
hostPort.AppendInt(aPort);
|
||||
|
||||
}
|
||||
if (!hostPort.IsEmpty()) {
|
||||
hostPort.AppendLiteral(":");
|
||||
hostPort.AppendInt(aPort);
|
||||
}
|
||||
_retval.Assign(hostPort);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче