summaryrefslogtreecommitdiffstats
path: root/providers
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2021-05-25 15:09:07 -0400
committerPauli <pauli@openssl.org>2021-05-27 09:56:41 +1000
commit9d0dd1d51335cd17d2594adfe4d30142f2ab8b19 (patch)
treeb4dd0790d8ca77378197f73972e753ce6109014c /providers
parent449bdf3746244160e8ab0ee3ac73d4c73017c2fb (diff)
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)
Diffstat (limited to 'providers')
-rw-r--r--providers/implementations/asymciphers/sm2_enc.c2
-rw-r--r--providers/implementations/kem/rsa_kem.c2
2 files changed, 2 insertions, 2 deletions
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"