Add missing include of cryptlib.h
authorRich Salz <rsalz@openssl.org>
Thu, 3 Aug 2017 20:21:01 +0000 (16:21 -0400)
committerRich Salz <rsalz@openssl.org>
Sun, 6 Aug 2017 21:06:19 +0000 (17:06 -0400)
Also use "" not <> for all include cryptlib

Reviewed-by: Andy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4082)

crypto/asn1/tasn_utl.c
crypto/ec/ec_key.c
crypto/include/internal/cryptlib_int.h
crypto/threads_none.c
crypto/threads_pthread.c
ssl/s3_lib.c

index f79d7d6b447cf2ed5d3eb19ebbbfedcd0c8495f3..9fc4cc264232b6f85d3375cd8308d9e59a046558 100644 (file)
@@ -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>
index 3abf467ce06c61018afd3ddcfc4f591ad83e3344..4098be6f49e3d82553fe9a1abf1ebfcd4ef369f3 100644 (file)
@@ -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>
index 60241d15dccb70d4da13f149517a9d07da974d91..3dddf0820046826a79d65d96c79d2d0fa7a13997 100644 (file)
@@ -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 */
 
index 1fc2f0fe6c80b9f70d9396bb5563c17900c34782..f7e53593a234a4d860656bb50f5e84ac0bed4921 100644 (file)
@@ -8,7 +8,7 @@
  */
 
 #include <openssl/crypto.h>
-#include <internal/cryptlib.h>
+#include "internal/cryptlib.h"
 
 #if !defined(OPENSSL_THREADS) || defined(CRYPTO_TDEBUG)
 
index f7c792123bc0748a8c672a944ae1385a329deb9b..e28a2021b45a76fb72675b2069b58956a67bbe92 100644 (file)
@@ -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)
 
index e36eb93ca7834591038413f0c32a6ded491fd4cd..fdccdb76c4a834275a79e1c742af59372585795e 100644 (file)
@@ -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)