summaryrefslogtreecommitdiffstats
path: root/fips/fips.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-02-13 18:45:41 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-02-13 18:45:41 +0000
commite990b4f838eaa649a1849d25db5be2236632fe34 (patch)
treeb099e52a8c5e3d6057a0ee8090bf81dc9660a016 /fips/fips.c
parente47af46cd839c549fac2d9f8a2951c35c0113fbf (diff)
Remove dependency of dsa_sign.o and dsa_vrf.o: new functions FIPS_dsa_sig_new
and FIPS_dsa_sig_free, reimplment DSA_SIG_new and DSA_SIG_free from ASN1 library.
Diffstat (limited to 'fips/fips.c')
-rw-r--r--fips/fips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fips/fips.c b/fips/fips.c
index 3d745557fc..51696b5e7c 100644
--- a/fips/fips.c
+++ b/fips/fips.c
@@ -498,7 +498,7 @@ int fips_pkey_signature_test(EVP_PKEY *pkey,
error:
if (dsig != NULL)
- DSA_SIG_free(dsig);
+ FIPS_dsa_sig_free(dsig);
if (sig != sigtmp)
OPENSSL_free(sig);
FIPS_md_ctx_cleanup(&mctx);