aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2017-08-03 16:21:01 -0400
committerRich Salz <rsalz@openssl.org>2017-08-06 17:06:19 -0400
commit5f8dd0f849d3bb87b2224715f8880716f39e9b0a (patch)
tree3ce718efa6c281c5f8ec1680fb4e7dd9f9811306
parentc57c32a8b1e381a5f272e64db349ebadc1ce4ff5 (diff)
downloadopenssl-5f8dd0f849d3bb87b2224715f8880716f39e9b0a.tar.gz
Add missing include of cryptlib.h
Also use "" not <> for all include cryptlib Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4082)
-rw-r--r--crypto/asn1/tasn_utl.c2
-rw-r--r--crypto/ec/ec_key.c2
-rw-r--r--crypto/include/internal/cryptlib_int.h2
-rw-r--r--crypto/threads_none.c2
-rw-r--r--crypto/threads_pthread.c2
-rw-r--r--ssl/s3_lib.c1
6 files changed, 6 insertions, 5 deletions
diff --git a/crypto/asn1/tasn_utl.c b/crypto/asn1/tasn_utl.c
index f79d7d6b44..9fc4cc2642 100644
--- a/crypto/asn1/tasn_utl.c
+++ b/crypto/asn1/tasn_utl.c
@@ -9,7 +9,7 @@
#include <stddef.h>
#include <string.h>
-#include <internal/cryptlib.h>
+#include "internal/cryptlib.h"
#include <openssl/asn1.h>
#include <openssl/asn1t.h>
#include <openssl/objects.h>
diff --git a/crypto/ec/ec_key.c b/crypto/ec/ec_key.c
index 3abf467ce0..4098be6f49 100644
--- a/crypto/ec/ec_key.c
+++ b/crypto/ec/ec_key.c
@@ -8,7 +8,7 @@
* https://www.openssl.org/source/license.html
*/
-#include <internal/cryptlib.h>
+#include "internal/cryptlib.h"
#include <string.h>
#include "ec_lcl.h"
#include <openssl/err.h>
diff --git a/crypto/include/internal/cryptlib_int.h b/crypto/include/internal/cryptlib_int.h
index 60241d15dc..3dddf08200 100644
--- a/crypto/include/internal/cryptlib_int.h
+++ b/crypto/include/internal/cryptlib_int.h
@@ -7,7 +7,7 @@
* https://www.openssl.org/source/license.html
*/
-#include <internal/cryptlib.h>
+#include "internal/cryptlib.h"
/* This file is not scanned by mkdef.pl, whereas cryptlib.h is */
diff --git a/crypto/threads_none.c b/crypto/threads_none.c
index 1fc2f0fe6c..f7e53593a2 100644
--- a/crypto/threads_none.c
+++ b/crypto/threads_none.c
@@ -8,7 +8,7 @@
*/
#include <openssl/crypto.h>
-#include <internal/cryptlib.h>
+#include "internal/cryptlib.h"
#if !defined(OPENSSL_THREADS) || defined(CRYPTO_TDEBUG)
diff --git a/crypto/threads_pthread.c b/crypto/threads_pthread.c
index f7c792123b..e28a2021b4 100644
--- a/crypto/threads_pthread.c
+++ b/crypto/threads_pthread.c
@@ -8,7 +8,7 @@
*/
#include <openssl/crypto.h>
-#include <internal/cryptlib.h>
+#include "internal/cryptlib.h"
#if defined(OPENSSL_THREADS) && !defined(CRYPTO_TDEBUG) && !defined(OPENSSL_SYS_WINDOWS)
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index e36eb93ca7..fdccdb76c4 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -15,6 +15,7 @@
#include <openssl/md5.h>
#include <openssl/dh.h>
#include <openssl/rand.h>
+#include "internal/cryptlib.h"
#define SSL3_NUM_CIPHERS OSSL_NELEM(ssl3_ciphers)
#define SSL3_NUM_SCSVS OSSL_NELEM(ssl3_scsvs)