diff --git a/mozilla/security/nss/lib/pk11wrap/pk11cert.c b/mozilla/security/nss/lib/pk11wrap/pk11cert.c index 6e61429eb0f..63a142b4b1e 100644 --- a/mozilla/security/nss/lib/pk11wrap/pk11cert.c +++ b/mozilla/security/nss/lib/pk11wrap/pk11cert.c @@ -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... */ diff --git a/mozilla/security/nss/lib/softoken/pkcs11c.c b/mozilla/security/nss/lib/softoken/pkcs11c.c index ad598cb951b..c188ce7efc0 100644 --- a/mozilla/security/nss/lib/softoken/pkcs11c.c +++ b/mozilla/security/nss/lib/softoken/pkcs11c.c @@ -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; diff --git a/mozilla/security/nss/lib/ssl/sslsock.c b/mozilla/security/nss/lib/ssl/sslsock.c index f09cd7112fb..13fa145d729 100644 --- a/mozilla/security/nss/lib/ssl/sslsock.c +++ b/mozilla/security/nss/lib/ssl/sslsock.c @@ -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;