summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-10-05 20:54:09 +0000
committerRichard Levitte <levitte@openssl.org>2002-10-05 20:54:09 +0000
commit6fed88113b50aaa4e76e35757f177bef19eb02de (patch)
treefe33d373ad59077ebd6cbd7b07800083f6514ae5 /crypto
parent97ebe047d0a10ad9ef475538d5e2e6a361dbb521 (diff)
For some reason, the random number support removed the destructor
Diffstat (limited to 'crypto')
-rw-r--r--crypto/engine/hw_cswift.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/engine/hw_cswift.c b/crypto/engine/hw_cswift.c
index 31b6250dd0..f925707a24 100644
--- a/crypto/engine/hw_cswift.c
+++ b/crypto/engine/hw_cswift.c
@@ -225,6 +225,7 @@ static int bind_helper(ENGINE *e)
!ENGINE_set_DH(e, &cswift_dh) ||
#endif
!ENGINE_set_RAND(e, &cswift_random) ||
+ !ENGINE_set_destroy_function(e, cswift_destroy) ||
!ENGINE_set_init_function(e, cswift_init) ||
!ENGINE_set_finish_function(e, cswift_finish) ||
!ENGINE_set_ctrl_function(e, cswift_ctrl) ||