diff options
author | levitte <levitte> | 2000-10-26 19:17:30 +0000 |
---|---|---|
committer | levitte <levitte> | 2000-10-26 19:17:30 +0000 |
commit | 27b7b94bef98572571912285c19fb8122a2b89ec (patch) | |
tree | 5298939f739ba5e30eff1d1533218a0bdc51fa4e /crypto/engine/hw_cswift.c | |
parent | fb25de0f1a6886ccda616bbd80a55aef5a3305a0 (diff) | |
download | openssl-BRANCH_engine.tar.gz |
Merge from main trunk, conflicts resolved.MERGED_engine2mainBRANCH_engine
Change what needs to be changed in crypto/engine to adapt to the new
way DSO works.
Change hw_nuron.c to use DSO functions instead of using dl*()
functions directly.
Diffstat (limited to 'crypto/engine/hw_cswift.c')
-rw-r--r-- | crypto/engine/hw_cswift.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/engine/hw_cswift.c b/crypto/engine/hw_cswift.c index 77608b898..5747973c7 100644 --- a/crypto/engine/hw_cswift.c +++ b/crypto/engine/hw_cswift.c @@ -264,8 +264,7 @@ static int cswift_init() goto err; } /* Attempt to load libswift.so/swift.dll/whatever. */ - cswift_dso = DSO_load(NULL, CSWIFT_LIBNAME, NULL, - DSO_FLAG_NAME_TRANSLATION); + cswift_dso = DSO_load(NULL, CSWIFT_LIBNAME, NULL, 0); if(cswift_dso == NULL) { ENGINEerr(ENGINE_F_CSWIFT_INIT,ENGINE_R_DSO_FAILURE); |