summaryrefslogtreecommitdiffstats
path: root/fips/dsa/fips_dsa_selftest.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/dsa/fips_dsa_selftest.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/dsa/fips_dsa_selftest.c')
-rw-r--r--fips/dsa/fips_dsa_selftest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fips/dsa/fips_dsa_selftest.c b/fips/dsa/fips_dsa_selftest.c
index 2fbdad5d47..ee225906bd 100644
--- a/fips/dsa/fips_dsa_selftest.c
+++ b/fips/dsa/fips_dsa_selftest.c
@@ -156,7 +156,7 @@ int FIPS_selftest_dsa()
if (dsa)
FIPS_dsa_free(dsa);
if (dsig)
- DSA_SIG_free(dsig);
+ FIPS_dsa_sig_free(dsig);
if (ret == 0)
FIPSerr(FIPS_F_FIPS_SELFTEST_DSA,FIPS_R_SELFTEST_FAILED);
return ret;