diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2021-06-24 11:13:51 +0200 |
---|---|---|
committer | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2021-11-17 15:48:37 +0100 |
commit | af16097febcd4fa31cd5fcd05ad09cf8b53659ea (patch) | |
tree | 332aec1155c2187e89dbf5ed8bdb4de8ba42244c /engines | |
parent | Add and use HAS_CASE_PREFIX(), CHECK_AND_SKIP_CASE_PREFIX(), and HAS_CASE_SUF... (diff) | |
download | openssl-af16097febcd4fa31cd5fcd05ad09cf8b53659ea.tar.xz openssl-af16097febcd4fa31cd5fcd05ad09cf8b53659ea.zip |
Move more general parts of internal/cryptlib.h to new internal/common.h
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15847)
Diffstat (limited to 'engines')
-rw-r--r-- | engines/e_loader_attic.c | 1 | ||||
-rw-r--r-- | engines/e_ossltest.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/engines/e_loader_attic.c b/engines/e_loader_attic.c index e5557df627..59f19d329f 100644 --- a/engines/e_loader_attic.c +++ b/engines/e_loader_attic.c @@ -940,7 +940,6 @@ static int file_find_type(OSSL_STORE_LOADER_CTX *ctx) return 1; } -/* This function has quite some overlap with providers/implementations/storemgmt/file_store.c */ static OSSL_STORE_LOADER_CTX *file_open_ex (const OSSL_STORE_LOADER *loader, const char *uri, OSSL_LIB_CTX *libctx, const char *propq, diff --git a/engines/e_ossltest.c b/engines/e_ossltest.c index 5b25a0eaf1..19dda64d1f 100644 --- a/engines/e_ossltest.c +++ b/engines/e_ossltest.c @@ -27,7 +27,7 @@ #include <stdio.h> #include <string.h> -#include "internal/cryptlib.h" +#include "internal/common.h" /* for CHECK_AND_SKIP_CASE_PREFIX */ #include <openssl/engine.h> #include <openssl/sha.h> |