summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2002-08-28 19:11:08 +0000
committerGeoff Thorpe <geoff@openssl.org>2002-08-28 19:11:08 +0000
commit41cc7096b84277073764181fdf303fe357aa9b0d (patch)
tree32381b4aa970643116213b7ee10857fafcf0a73d /crypto
parentc237de058f91072b5d54ad9c570049c14df6957e (diff)
Fix a bug to allow the 4758 ENGINE to build as a DSO.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/engine/hw_4758_cca.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/engine/hw_4758_cca.c b/crypto/engine/hw_4758_cca.c
index 1053c52082..bfb80968e2 100644
--- a/crypto/engine/hw_4758_cca.c
+++ b/crypto/engine/hw_4758_cca.c
@@ -953,7 +953,7 @@ static void cca_ex_free(void *obj, void *item, CRYPTO_EX_DATA *ad, int idx,
#ifdef ENGINE_DYNAMIC_SUPPORT
static int bind_fn(ENGINE *e, const char *id)
{
- if(id && (strcmp(id, engine_cswift_id) != 0))
+ if(id && (strcmp(id, engine_4758_cca_id) != 0))
return 0;
if(!bind_helper(e))
return 0;