summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2021-05-25 15:06:22 -0400
committerPauli <pauli@openssl.org>2021-05-27 09:56:41 +1000
commit6229815ab8f6e0a6e272c7a7094a061606cd0a90 (patch)
tree08d8dbb2c845fbe892f139ec100cc4bc730bce6d /test
parente475d9a443ecb20d7cec711e208190c1e2b5bb0d (diff)
Use <> for #include openssl/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)
Diffstat (limited to 'test')
-rw-r--r--test/ectest.c6
-rw-r--r--test/param_build_test.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/test/ectest.c b/test/ectest.c
index f58cd4e4bc..c08b14be45 100644
--- a/test/ectest.c
+++ b/test/ectest.c
@@ -28,9 +28,9 @@
#include <openssl/rand.h>
#include <openssl/bn.h>
#include <openssl/opensslconf.h>
-#include "openssl/core_names.h"
-#include "openssl/param_build.h"
-#include "openssl/evp.h"
+#include <openssl/core_names.h>
+#include <openssl/param_build.h>
+#include <openssl/evp.h>
static size_t crv_len = 0;
static EC_builtin_curve *curves = NULL;
diff --git a/test/param_build_test.c b/test/param_build_test.c
index e08bb31bf6..bfa463acc5 100644
--- a/test/param_build_test.c
+++ b/test/param_build_test.c
@@ -10,7 +10,7 @@
#include <string.h>
#include <openssl/params.h>
-#include "openssl/param_build.h"
+#include <openssl/param_build.h>
#include "internal/nelem.h"
#include "testutil.h"