From: Richard Levitte Date: Wed, 9 Mar 2016 16:24:34 +0000 (+0100) Subject: Make ct_dir and certs_dir static in test/ct_test.c X-Git-Tag: OpenSSL_1_1_0-pre4~129 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=67336ea4006e83d0c90821c02b7f94bb80c24647;p=oweals%2Fopenssl.git Make ct_dir and certs_dir static in test/ct_test.c Reviewed-by: Matt Caswell --- 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;