diff options
author | Rich Salz <rsalz@akamai.com> | 2021-05-25 21:09:07 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-05-27 01:56:41 +0200 |
commit | 9d0dd1d51335cd17d2594adfe4d30142f2ab8b19 (patch) | |
tree | b4dd0790d8ca77378197f73972e753ce6109014c | |
parent | Use "" for include internal/xxx (diff) | |
download | openssl-9d0dd1d51335cd17d2594adfe4d30142f2ab8b19.tar.xz openssl-9d0dd1d51335cd17d2594adfe4d30142f2ab8b19.zip |
Use "" for include crypto/xxx
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15468)
-rw-r--r-- | crypto/dh/dh_kdf.c | 2 | ||||
-rw-r--r-- | crypto/ppccap.c | 2 | ||||
-rw-r--r-- | engines/e_devcrypto.c | 2 | ||||
-rw-r--r-- | providers/implementations/asymciphers/sm2_enc.c | 2 | ||||
-rw-r--r-- | providers/implementations/kem/rsa_kem.c | 2 | ||||
-rw-r--r-- | ssl/ktls.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/crypto/dh/dh_kdf.c b/crypto/dh/dh_kdf.c index 0ec7644909..ecc37fa92a 100644 --- a/crypto/dh/dh_kdf.c +++ b/crypto/dh/dh_kdf.c @@ -22,7 +22,7 @@ #include <openssl/asn1.h> #include <openssl/kdf.h> #include "internal/provider.h" -#include <crypto/dh.h> +#include "crypto/dh.h" /* Key derivation function from X9.63/SECG */ int ossl_dh_kdf_X9_42_asn1(unsigned char *out, size_t outlen, diff --git a/crypto/ppccap.c b/crypto/ppccap.c index 2048be7b1d..4d28d84cae 100644 --- a/crypto/ppccap.c +++ b/crypto/ppccap.c @@ -29,7 +29,7 @@ #include <openssl/crypto.h> #include <openssl/bn.h> #include "internal/cryptlib.h" -#include <crypto/chacha.h> +#include "crypto/chacha.h" #include "bn/bn_local.h" #include "ppc_arch.h" diff --git a/engines/e_devcrypto.c b/engines/e_devcrypto.c index 76255a978d..d279b601f5 100644 --- a/engines/e_devcrypto.c +++ b/engines/e_devcrypto.c @@ -24,7 +24,7 @@ #include <openssl/err.h> #include <openssl/engine.h> #include <openssl/objects.h> -#include <crypto/cryptodev.h> +#include "crypto/cryptodev.h" /* #define ENGINE_DEVCRYPTO_DEBUG */ diff --git a/providers/implementations/asymciphers/sm2_enc.c b/providers/implementations/asymciphers/sm2_enc.c index 581ca632b2..a855a36d20 100644 --- a/providers/implementations/asymciphers/sm2_enc.c +++ b/providers/implementations/asymciphers/sm2_enc.c @@ -16,7 +16,7 @@ #include <openssl/params.h> #include <openssl/err.h> #include <openssl/proverr.h> -#include <crypto/sm2.h> +#include "crypto/sm2.h" #include "prov/provider_ctx.h" #include "prov/implementations.h" #include "prov/provider_util.h" diff --git a/providers/implementations/kem/rsa_kem.c b/providers/implementations/kem/rsa_kem.c index 9aa0a7aaee..1ccc57a8da 100644 --- a/providers/implementations/kem/rsa_kem.c +++ b/providers/implementations/kem/rsa_kem.c @@ -21,7 +21,7 @@ #include <openssl/rsa.h> #include <openssl/params.h> #include <openssl/err.h> -#include <crypto/rsa.h> +#include "crypto/rsa.h" #include <openssl/proverr.h> #include "prov/provider_ctx.h" #include "prov/implementations.h" diff --git a/ssl/ktls.c b/ssl/ktls.c index 2d1ef693c2..4aece2e7b7 100644 --- a/ssl/ktls.c +++ b/ssl/ktls.c @@ -11,7 +11,7 @@ #include "internal/ktls.h" #if defined(__FreeBSD__) -# include <crypto/cryptodev.h> +# include "crypto/cryptodev.h" /*- * Check if a given cipher is supported by the KTLS interface. |