summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2017-08-22 08:35:43 -0400
committerRich Salz <rsalz@openssl.org>2017-08-22 09:54:20 -0400
commit176db6dc51ec0a972bfa8836cfdab8f6767c978a (patch)
treea1ac85fb38a43a0c7093e650645f116f4ac3fa2d /crypto/engine
parent12bd06cd6b7a67ae6b4f582b085555f62fbea93a (diff)
Use "" not <> for internal/ includes
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4217)
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/eng_int.h4
-rw-r--r--crypto/engine/eng_openssl.c2
-rw-r--r--crypto/engine/eng_rdrand.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/crypto/engine/eng_int.h b/crypto/engine/eng_int.h
index 0af8b8f8f9..60fdf820f0 100644
--- a/crypto/engine/eng_int.h
+++ b/crypto/engine/eng_int.h
@@ -12,8 +12,8 @@
# define HEADER_ENGINE_INT_H
# include "internal/cryptlib.h"
-# include <internal/engine.h>
-# include <internal/thread_once.h>
+# include "internal/engine.h"
+# include "internal/thread_once.h"
# include "internal/refcount.h"
#ifdef __cplusplus
diff --git a/crypto/engine/eng_openssl.c b/crypto/engine/eng_openssl.c
index dce5cccfd8..02885f4680 100644
--- a/crypto/engine/eng_openssl.c
+++ b/crypto/engine/eng_openssl.c
@@ -11,7 +11,7 @@
#include <stdio.h>
#include <openssl/crypto.h>
#include "internal/cryptlib.h"
-#include <internal/engine.h>
+#include "internal/engine.h"
#include <openssl/pem.h>
#include <openssl/evp.h>
#include <openssl/rand.h>
diff --git a/crypto/engine/eng_rdrand.c b/crypto/engine/eng_rdrand.c
index b3defcbe4f..7be64e3fd4 100644
--- a/crypto/engine/eng_rdrand.c
+++ b/crypto/engine/eng_rdrand.c
@@ -11,7 +11,7 @@
#include <stdio.h>
#include <string.h>
-#include <internal/engine.h>
+#include "internal/engine.h"
#include <openssl/rand.h>
#include <openssl/err.h>
#include <openssl/crypto.h>