Skip to content

Commit

Permalink
Use "" for include crypto/xxx
Browse files Browse the repository at this point in the history
Reviewed-by: Shane Lontis <[email protected]>
Reviewed-by: Paul Dale <[email protected]>
(Merged from openssl#15468)
  • Loading branch information
richsalz authored and paulidale committed May 26, 2021
1 parent 449bdf3 commit 9d0dd1d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crypto/dh/dh_kdf.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <openssl/asn1.h>
#include <openssl/kdf.h>
#include "internal/provider.h"
#include <crypto/dh.h>
#include "crypto/dh.h"

/* Key derivation function from X9.63/SECG */
int ossl_dh_kdf_X9_42_asn1(unsigned char *out, size_t outlen,
Expand Down
2 changes: 1 addition & 1 deletion crypto/ppccap.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include <openssl/crypto.h>
#include <openssl/bn.h>
#include "internal/cryptlib.h"
#include <crypto/chacha.h>
#include "crypto/chacha.h"
#include "bn/bn_local.h"

#include "ppc_arch.h"
Expand Down
2 changes: 1 addition & 1 deletion engines/e_devcrypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <openssl/err.h>
#include <openssl/engine.h>
#include <openssl/objects.h>
#include <crypto/cryptodev.h>
#include "crypto/cryptodev.h"

/* #define ENGINE_DEVCRYPTO_DEBUG */

Expand Down
2 changes: 1 addition & 1 deletion providers/implementations/asymciphers/sm2_enc.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <openssl/params.h>
#include <openssl/err.h>
#include <openssl/proverr.h>
#include <crypto/sm2.h>
#include "crypto/sm2.h"
#include "prov/provider_ctx.h"
#include "prov/implementations.h"
#include "prov/provider_util.h"
Expand Down
2 changes: 1 addition & 1 deletion providers/implementations/kem/rsa_kem.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <openssl/rsa.h>
#include <openssl/params.h>
#include <openssl/err.h>
#include <crypto/rsa.h>
#include "crypto/rsa.h"
#include <openssl/proverr.h>
#include "prov/provider_ctx.h"
#include "prov/implementations.h"
Expand Down
2 changes: 1 addition & 1 deletion ssl/ktls.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "internal/ktls.h"

#if defined(__FreeBSD__)
# include <crypto/cryptodev.h>
# include "crypto/cryptodev.h"

/*-
* Check if a given cipher is supported by the KTLS interface.
Expand Down

0 comments on commit 9d0dd1d

Please sign in to comment.