From: Geoff Thorpe Date: Wed, 28 Aug 2002 19:11:59 +0000 (+0000) Subject: Fix a bug to allow the 4758 ENGINE to build as a DSO. X-Git-Tag: OpenSSL_0_9_7-beta4~177 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3a00964dd38c9b9f43558a686537c3f70f488b8d;p=openssl Fix a bug to allow the 4758 ENGINE to build as a DSO. --- 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;