From 4d2bc7e18152503dfc4347839857b1121f41347c Mon Sep 17 00:00:00 2001 From: "ian.mcgreer%sun.com" Date: Wed, 5 Feb 2003 03:00:47 +0000 Subject: fix ssl2 bugs --- security/nss/lib/pki/cryptocontext.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'security/nss/lib/pki/cryptocontext.c') 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) { -- cgit v1.2.1