summaryrefslogtreecommitdiff
path: root/security/nss/lib/pki/cryptocontext.c
diff options
context:
space:
mode:
authorian.mcgreer%sun.com <devnull@localhost>2003-02-05 03:00:47 +0000
committerian.mcgreer%sun.com <devnull@localhost>2003-02-05 03:00:47 +0000
commit4d2bc7e18152503dfc4347839857b1121f41347c (patch)
tree550977b0f4e9b076ca9701a7c860aa2e111f890e /security/nss/lib/pki/cryptocontext.c
parentbb305c589df5be308ad2563bb6989cbe83abe5f6 (diff)
downloadnss-hg-4d2bc7e18152503dfc4347839857b1121f41347c.tar.gz
fix ssl2 bugs
Diffstat (limited to 'security/nss/lib/pki/cryptocontext.c')
-rw-r--r--security/nss/lib/pki/cryptocontext.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/security/nss/lib/pki/cryptocontext.c b/security/nss/lib/pki/cryptocontext.c
index d3159c013..065bb340f 100644
--- a/security/nss/lib/pki/cryptocontext.c
+++ b/security/nss/lib/pki/cryptocontext.c
@@ -162,10 +162,10 @@ nssCryptoContext_Destroy (
{
PRStatus status = PR_SUCCESS;
switch (cc->which) {
- case a_cert: nssCert_Destroy(cc->u.cert); break;
- case a_pubkey: nssPublicKey_Destroy(cc->u.bkey); break;
+ case a_cert: nssCert_Destroy(cc->u.cert); break;
+ case a_pubkey: nssPublicKey_Destroy(cc->u.bkey); break;
case a_privkey: nssPrivateKey_Destroy(cc->u.vkey); break;
- case a_symkey: nssSymKey_Destroy(cc->u.mkey); break;
+ case a_symkey: nssSymKey_Destroy(cc->u.mkey); break;
default: break;
}
if (cc->key) {