diff options
Diffstat (limited to 'src/lib/libcrypto/doc/engine.pod')
-rw-r--r-- | src/lib/libcrypto/doc/engine.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/doc/engine.pod b/src/lib/libcrypto/doc/engine.pod index 4a6ee59138..578a702371 100644 --- a/src/lib/libcrypto/doc/engine.pod +++ b/src/lib/libcrypto/doc/engine.pod | |||
@@ -309,11 +309,11 @@ consideration is whether any/all available ENGINE implementations should be | |||
309 | made visible to OpenSSL - this is controlled by calling the various "load" | 309 | made visible to OpenSSL - this is controlled by calling the various "load" |
310 | functions, eg. | 310 | functions, eg. |
311 | 311 | ||
312 | /* Make the "dynamic" ENGINE available */ | ||
313 | void ENGINE_load_dynamic(void); | ||
314 | ... | ||
315 | /* Make ALL ENGINE implementations bundled with OpenSSL available */ | 312 | /* Make ALL ENGINE implementations bundled with OpenSSL available */ |
316 | void ENGINE_load_builtin_engines(void); | 313 | ENGINE_load_builtin_engines(); |
314 | |||
315 | Note that ENGINE_load_dynamic(void) is a placeholder and does not enable | ||
316 | dynamic engine loading support. | ||
317 | 317 | ||
318 | Having called any of these functions, ENGINE objects would have been | 318 | Having called any of these functions, ENGINE objects would have been |
319 | dynamically allocated and populated with these implementations and linked | 319 | dynamically allocated and populated with these implementations and linked |