From 67336ea4006e83d0c90821c02b7f94bb80c24647 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 9 Mar 2016 17:24:34 +0100 Subject: [PATCH] Make ct_dir and certs_dir static in test/ct_test.c Reviewed-by: Matt Caswell --- test/ct_test.c | 4 ++-- 1 file 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; -- 2.34.1