From: Viktor Szakats Date: Sat, 13 Feb 2016 17:46:30 +0000 (+0100) Subject: GH675: make ssl3_ciphers static X-Git-Tag: OpenSSL_1_1_0-pre3~25 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0ff328e360f56d8a79cbb61b2931a13fb7199c2;p=openssl GH675: make ssl3_ciphers static Signed-off-by: Rich Salz Reviewed-by: Richard Levitte --- diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c index 3e1e60da5b..8f6eda2c71 100644 --- a/ssl/s3_lib.c +++ b/ssl/s3_lib.c @@ -159,7 +159,7 @@ #define SSL3_NUM_CIPHERS OSSL_NELEM(ssl3_ciphers) /* list of available SSLv3 ciphers (sorted by id) */ -OPENSSL_GLOBAL const SSL_CIPHER ssl3_ciphers[] = { +static const SSL_CIPHER ssl3_ciphers[] = { /* The RSA ciphers */ /* Cipher 01 */ diff --git a/ssl/ssl_locl.h b/ssl/ssl_locl.h index 913b0e9dc3..dc0db1fdd1 100644 --- a/ssl/ssl_locl.h +++ b/ssl/ssl_locl.h @@ -1691,7 +1691,6 @@ typedef struct ssl3_comp_st { # endif extern SSL3_ENC_METHOD ssl3_undef_enc_method; -OPENSSL_EXTERN const SSL_CIPHER ssl3_ciphers[]; SSL_METHOD *ssl_bad_method(int ver);