Use "" for include internal/xxx
authorRich Salz <rsalz@akamai.com>
Tue, 25 May 2021 19:08:03 +0000 (15:08 -0400)
committerPauli <pauli@openssl.org>
Wed, 26 May 2021 23:56:41 +0000 (09:56 +1000)
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15468)

apps/s_time.c
crypto/dh/dh_kdf.c
crypto/evp/e_rc4_hmac_md5.c
crypto/ppccap.c
fuzz/asn1.c
providers/fips/self_test.c
ssl/statem/statem_clnt.c
test/sparse_array_test.c
test/tls-provider.c

index 8c43db952e399b868213851b101c1456608e8b42..34e939d0472c9d1c9f69c806744d05d7530f303c 100644 (file)
@@ -22,7 +22,7 @@
 #include <openssl/pem.h>
 #include "s_apps.h"
 #include <openssl/err.h>
-#include <internal/sockets.h>
+#include "internal/sockets.h"
 #if !defined(OPENSSL_SYS_MSDOS)
 # include <unistd.h>
 #endif
index 619571537a313ded2557e942a3a71a36c576d9bf..0ec7644909416a23c3c78547d9c82ebdbdde9828 100644 (file)
@@ -21,7 +21,7 @@
 #include <openssl/evp.h>
 #include <openssl/asn1.h>
 #include <openssl/kdf.h>
-#include <internal/provider.h>
+#include "internal/provider.h"
 #include <crypto/dh.h>
 
 /* Key derivation function from X9.63/SECG */
index 6a38f95d5ee18d6e1352fad15002179b92bd39c0..c8b6da246fb512226e227304d3e4c4903e491c8c 100644 (file)
@@ -13,7 +13,7 @@
  */
 #include "internal/deprecated.h"
 
-#include <internal/cryptlib.h>
+#include "internal/cryptlib.h"
 #include <openssl/opensslconf.h>
 
 #include <stdio.h>
index a504bc59b03978d0749f1f2827807c1e15eb1cfa..2048be7b1d252b71e397c47f8818bed5bd2e1585 100644 (file)
@@ -28,7 +28,7 @@
 #endif
 #include <openssl/crypto.h>
 #include <openssl/bn.h>
-#include <internal/cryptlib.h>
+#include "internal/cryptlib.h"
 #include <crypto/chacha.h>
 #include "bn/bn_local.h"
 
index 449d851e68037870c496352cec72bcceb2f60352..8ce9a57c255dfff31cf2ad37d74d30ebe7a8df85 100644 (file)
@@ -37,7 +37,7 @@
 #include <openssl/bio.h>
 #include <openssl/evp.h>
 #include <openssl/ssl.h>
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 #include "fuzzer.h"
 
 static ASN1_ITEM_EXP *item_type[] = {
index 2b3b30de27eb3183f6ac3672e4d6c35595d6d70c..a4d7a4ffe203ca6f94bafb13bc829d2cab0680c9 100644 (file)
@@ -11,7 +11,7 @@
 #include <openssl/evp.h>
 #include <openssl/params.h>
 #include <openssl/crypto.h>
-#include <internal/cryptlib.h>
+#include "internal/cryptlib.h"
 #include <openssl/fipskey.h>
 #include <openssl/err.h>
 #include <openssl/proverr.h>
@@ -25,7 +25,7 @@
  * it should be run once regardless of the number of OSSL_LIB_CTXs we have.
  */
 #define ALLOW_RUN_ONCE_IN_FIPS
-#include <internal/thread_once.h>
+#include "internal/thread_once.h"
 #include "self_test.h"
 
 #define FIPS_STATE_INIT     0
index 85ed3e42597c382b386fb5b136f2248b4be2b2cd..ad1d0e7e058457e2cd0ad6cb147aa93571ff9f65 100644 (file)
@@ -26,7 +26,7 @@
 #include <openssl/trace.h>
 #include <openssl/core_names.h>
 #include <openssl/param_build.h>
-#include <internal/cryptlib.h>
+#include "internal/cryptlib.h"
 
 static MSG_PROCESS_RETURN tls_process_as_hello_retry_request(SSL *s, PACKET *pkt);
 static MSG_PROCESS_RETURN tls_process_encrypted_extensions(SSL *s, PACKET *pkt);
index 2c7f5a878cc2c6ad34702ed7710cb1523154bdfd..69f830e5c786f92e3236c3f2a67369eeac7c98de 100644 (file)
@@ -13,8 +13,7 @@
 #include <limits.h>
 
 #include <openssl/crypto.h>
-#include <internal/nelem.h>
-
+#include "internal/nelem.h"
 #include "crypto/sparse_array.h"
 #include "testutil.h"
 
index d9d52664b2b337e7e899eeed96ba1d587a503f85..20360d469e6d2cde0838188be1f2c74cb3caa239 100644 (file)
@@ -14,7 +14,7 @@
 #include <openssl/params.h>
 /* For TLS1_3_VERSION */
 #include <openssl/ssl.h>
-#include <internal/nelem.h>
+#include "internal/nelem.h"
 
 static OSSL_FUNC_keymgmt_import_fn xor_import;
 static OSSL_FUNC_keymgmt_import_types_fn xor_import_types;