diff options
author | Richard Levitte <levitte@openssl.org> | 2002-11-13 16:30:25 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-11-13 16:30:25 +0100 |
commit | 8f797f14b8ff7d3d5cb04443284259a0c94860b3 (patch) | |
tree | 9313f4139e28c11b4421bd2e6d0f8691836965de /engines/e_ncipher.c | |
parent | Make internal functions static. (diff) | |
download | openssl-8f797f14b8ff7d3d5cb04443284259a0c94860b3.tar.xz openssl-8f797f14b8ff7d3d5cb04443284259a0c94860b3.zip |
When build as dynamic engines, the loading functions should be defined
static.
Diffstat (limited to 'engines/e_ncipher.c')
-rw-r--r-- | engines/e_ncipher.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/e_ncipher.c b/engines/e_ncipher.c index f38a6a6b35..6126948ed1 100644 --- a/engines/e_ncipher.c +++ b/engines/e_ncipher.c @@ -372,6 +372,7 @@ static int bind_helper(ENGINE *e) return 1; } +#ifdef OPENSSL_NO_DYNAMIC_ENGINE static ENGINE *engine_ncipher(void) { ENGINE *ret = ENGINE_new(); @@ -394,6 +395,7 @@ void ENGINE_load_chil(void) ENGINE_free(toadd); ERR_clear_error(); } +#endif /* This is a process-global DSO handle used for loading and unloading * the HWCryptoHook library. NB: This is only set (or unset) during an |