summaryrefslogtreecommitdiffstats
path: root/test/ct_test.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-09 17:24:34 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-09 17:58:02 +0100
commit67336ea4006e83d0c90821c02b7f94bb80c24647 (patch)
tree21304530088f19a1bae472fcaa3c4476280c7419 /test/ct_test.c
parent1bee9d6b6c3bf9519bf46fd1a67d5f07eb2c9cb3 (diff)
Make ct_dir and certs_dir static in test/ct_test.c
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'test/ct_test.c')
-rw-r--r--test/ct_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ct_test.c b/test/ct_test.c
index fec1694926..7d0c1b22e2 100644
--- a/test/ct_test.c
+++ b/test/ct_test.c
@@ -69,8 +69,8 @@
/* Used when declaring buffers to read text files into */
#define CT_TEST_MAX_FILE_SIZE 8096
-char *certs_dir = NULL;
-char *ct_dir = NULL;
+static char *certs_dir = NULL;
+static char *ct_dir = NULL;
typedef struct ct_test_fixture {
const char *test_case_name;