diff options
author | Matt Caswell <matt@openssl.org> | 2020-09-24 11:56:03 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2020-10-01 10:25:20 +0200 |
commit | 746f3674896845460946ace7e963e52b547fbf35 (patch) | |
tree | 3524d555baa83495e8b19a0bd279e8a3b42807c9 /engines | |
parent | Run the withlibctx.pl script (diff) | |
download | openssl-746f3674896845460946ace7e963e52b547fbf35.tar.xz openssl-746f3674896845460946ace7e963e52b547fbf35.zip |
Fix some things the rename script didn't quite get right
The previous commit ran an automated rename throughout the codebase.
There are a small number of things it didn't quite get right so we fix
those in this commit.
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/12970)
Diffstat (limited to 'engines')
-rw-r--r-- | engines/e_loader_attic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/e_loader_attic.c b/engines/e_loader_attic.c index 1bb2002d52..97789f7293 100644 --- a/engines/e_loader_attic.c +++ b/engines/e_loader_attic.c @@ -1744,7 +1744,7 @@ static int bind_loader_attic(ENGINE *e) if (/* Create the OSSL_STORE_LOADER */ (loader_attic = OSSL_STORE_LOADER_new(e, "file")) == NULL - || !OSSL_STORE_LOADER_set_open_ex(loader_attic, file_open_with_libctx) + || !OSSL_STORE_LOADER_set_open_ex(loader_attic, file_open_ex) || !OSSL_STORE_LOADER_set_open(loader_attic, file_open) || !OSSL_STORE_LOADER_set_attach(loader_attic, file_attach) || !OSSL_STORE_LOADER_set_ctrl(loader_attic, file_ctrl) |