diff options
author | Rich Salz <rsalz@akamai.com> | 2021-05-22 15:57:07 -0400 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-05-25 10:26:59 +1000 |
commit | a861711bcded8e259156342be697d72ec65f0aa2 (patch) | |
tree | d807f50cec6e4cbd4e1b7c7e9bb562e741c461e7 /crypto/engine/eng_local.h | |
parent | 3c9f992aa03aa8d75a1815a72d58dceeeb71e2a2 (diff) | |
download | openssl-new-a861711bcded8e259156342be697d72ec65f0aa2.tar.gz |
Remove engine_table_select_int
Add missing file/line args and call it engine_table_select
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15419)
Diffstat (limited to 'crypto/engine/eng_local.h')
-rw-r--r-- | crypto/engine/eng_local.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/crypto/engine/eng_local.h b/crypto/engine/eng_local.h index 1862920157..ef96a5769f 100644 --- a/crypto/engine/eng_local.h +++ b/crypto/engine/eng_local.h @@ -62,10 +62,8 @@ int engine_table_register(ENGINE_TABLE **table, ENGINE_CLEANUP_CB *cleanup, int setdefault); void engine_table_unregister(ENGINE_TABLE **table, ENGINE *e); void engine_table_cleanup(ENGINE_TABLE **table); -ENGINE *engine_table_select_int(ENGINE_TABLE **table, int nid, const char *f, - int l); -# define engine_table_select(t,n) \ - engine_table_select_int(t,n,OPENSSL_FILE,OPENSSL_LINE) +ENGINE *ossl_engine_table_select(ENGINE_TABLE **table, int nid, + const char *f, int l); typedef void (engine_table_doall_cb) (int nid, STACK_OF(ENGINE) *sk, ENGINE *def, void *arg); void engine_table_doall(ENGINE_TABLE *table, engine_table_doall_cb *cb, |