Checking in riceman+bmo@mail.rit.edu's patch for bug 133702

This commit is contained in:
bishakhabanerjee%netscape.com 2002-07-30 20:57:44 +00:00
Родитель 78e3ad68c8
Коммит e4036ae80a
3 изменённых файлов: 4 добавлений и 1 удалений

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

@ -1478,6 +1478,7 @@ PK11_GetPubIndexKeyID(CERTCertificate *cert) {
break;
case dhKey:
newItem = SECITEM_DupItem(&pubk->u.dh.publicValue);
break;
case fortezzaKey:
default:
newItem = NULL; /* Fortezza Fix later... */

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

@ -2374,6 +2374,7 @@ finish_rsa:
break;
case CKM_TLS_PRF_GENERAL:
crv = pk11_TLSPRFInit(context, key, key_type);
break;
default:
crv = CKR_MECHANISM_INVALID;

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

@ -35,7 +35,7 @@
* may use your version of this file under either the MPL or the
* GPL.
*
* $Id: sslsock.c,v 1.28 2002-04-04 00:14:11 nelsonb%netscape.com Exp $
* $Id: sslsock.c,v 1.29 2002-07-30 20:56:32 bishakhabanerjee%netscape.com Exp $
*/
#include "seccomon.h"
#include "cert.h"
@ -739,6 +739,7 @@ SSL_OptionSetDefault(PRInt32 which, PRBool on)
case SSL_ENABLE_FDX:
ssl_defaults.fdx = on;
break;
case SSL_V2_COMPATIBLE_HELLO:
ssl_defaults.v2CompatibleHello = on;