Bug 423002, Incorrect error message with certificates which contain subjectAltName r=rrelyea, a1.9=beltzner

This commit is contained in:
kaie@kuix.de 2008-04-10 18:28:09 -07:00
Родитель 3a9bc633ae
Коммит e9bf78dc4a
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -812,7 +812,7 @@ static PRBool
GetSubjectAltNames(CERTCertificate *nssCert,
nsINSSComponent *component,
nsString &allNames,
PRUint32 nameCount)
PRUint32 &nameCount)
{
allNames.Truncate();
nameCount = 0;
@ -844,9 +844,9 @@ GetSubjectAltNames(CERTCertificate *nssCert,
case certDNSName:
name.AssignASCII((char*)current->name.other.data, current->name.other.len);
if (!allNames.IsEmpty()) {
++nameCount;
allNames.Append(NS_LITERAL_STRING(" , "));
}
++nameCount;
allNames.Append(name);
break;
@ -869,9 +869,9 @@ GetSubjectAltNames(CERTCertificate *nssCert,
}
if (!name.IsEmpty()) {
if (!allNames.IsEmpty()) {
++nameCount;
allNames.Append(NS_LITERAL_STRING(" , "));
}
++nameCount;
allNames.Append(name);
}
break;