Bugzilla Bug 282527: fixed a bug that prevented certutil from generating

a cert with multiple DNS names in the subjectAltName extension.  The patch
is contributed by Neil Williams of Sun. r=wtc.
This commit is contained in:
wtchang%redhat.com 2005-02-23 23:44:09 +00:00
Родитель 822de539b8
Коммит e180302d71
1 изменённых файлов: 0 добавлений и 1 удалений

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

@ -1725,7 +1725,6 @@ AddSubjectAltNames(void *extHandle, const char *names, CERTGeneralNameType type)
nameList = current;
}
current->type = type;
current->type = certRFC822Name;
current->name.other.data = (unsigned char *)tbuf;
current->name.other.len = PORT_Strlen(tbuf);
prev = &(current->l);