Use "" for include internal/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)
This commit is contained in:
Rich Salz 2021-05-25 15:08:03 -04:00 committed by Pauli
parent 6229815ab8
commit 449bdf3746
9 changed files with 10 additions and 11 deletions

View 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

View 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 */

View File

@ -13,7 +13,7 @@
*/
#include "internal/deprecated.h"
#include <internal/cryptlib.h>
#include "internal/cryptlib.h"
#include <openssl/opensslconf.h>
#include <stdio.h>

View 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"

View 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[] = {

View 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

View 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);

View 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"

View 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;