summaryrefslogtreecommitdiffstats
path: root/providers/implementations
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2021-05-25 15:06:22 -0400
committerPauli <pauli@openssl.org>2021-05-27 09:56:41 +1000
commit6229815ab8f6e0a6e272c7a7094a061606cd0a90 (patch)
tree08d8dbb2c845fbe892f139ec100cc4bc730bce6d /providers/implementations
parente475d9a443ecb20d7cec711e208190c1e2b5bb0d (diff)
Use <> for #include openssl/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)
Diffstat (limited to 'providers/implementations')
-rw-r--r--providers/implementations/ciphers/cipher_camellia.h2
-rw-r--r--providers/implementations/keymgmt/ecx_kmgmt.c2
-rw-r--r--providers/implementations/keymgmt/mac_legacy_kmgmt.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/providers/implementations/ciphers/cipher_camellia.h b/providers/implementations/ciphers/cipher_camellia.h
index bd4debcd39..dc7516cedb 100644
--- a/providers/implementations/ciphers/cipher_camellia.h
+++ b/providers/implementations/ciphers/cipher_camellia.h
@@ -7,7 +7,7 @@
* https://www.openssl.org/source/license.html
*/
-#include "openssl/camellia.h"
+#include <openssl/camellia.h>
#include "prov/ciphercommon.h"
#include "crypto/cmll_platform.h"
diff --git a/providers/implementations/keymgmt/ecx_kmgmt.c b/providers/implementations/keymgmt/ecx_kmgmt.c
index 45593be544..506f350173 100644
--- a/providers/implementations/keymgmt/ecx_kmgmt.c
+++ b/providers/implementations/keymgmt/ecx_kmgmt.c
@@ -19,7 +19,7 @@
#include <openssl/evp.h>
#include <openssl/rand.h>
#include "internal/param_build_set.h"
-#include "openssl/param_build.h"
+#include <openssl/param_build.h>
#include "crypto/ecx.h"
#include "prov/implementations.h"
#include "prov/providercommon.h"
diff --git a/providers/implementations/keymgmt/mac_legacy_kmgmt.c b/providers/implementations/keymgmt/mac_legacy_kmgmt.c
index c33ed3e2c2..f11bcc560c 100644
--- a/providers/implementations/keymgmt/mac_legacy_kmgmt.c
+++ b/providers/implementations/keymgmt/mac_legacy_kmgmt.c
@@ -17,7 +17,7 @@
#include <openssl/err.h>
#include <openssl/evp.h>
#include <openssl/proverr.h>
-#include "openssl/param_build.h"
+#include <openssl/param_build.h>
#include "internal/param_build_set.h"
#include "prov/implementations.h"
#include "prov/providercommon.h"