summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-01-10 09:38:30 +0000
committerMatt Caswell <matt@openssl.org>2017-01-10 23:02:50 +0000
commit1b520cbb6ac7b617fe86be3bdab9c98eab24dfe4 (patch)
treecb7339f19b3d5b1c2fe2cb34d843740dbc8a34f3
parenta2de7943041643a9779acff8ea1d3c9d87d1df67 (diff)
Fix a Travis failure
Declare a variable as static to silence the warning Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2157)
-rw-r--r--ssl/t1_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c
index 6c79fe09e0..7878538444 100644
--- a/ssl/t1_lib.c
+++ b/ssl/t1_lib.c
@@ -753,7 +753,7 @@ typedef struct sigalg_lookup_st {
int sig;
} SIGALG_LOOKUP;
-SIGALG_LOOKUP sigalg_lookup_tbl[] = {
+static SIGALG_LOOKUP sigalg_lookup_tbl[] = {
{TLSEXT_SIGALG_ecdsa_secp256r1_sha256, NID_sha256, EVP_PKEY_EC},
{TLSEXT_SIGALG_ecdsa_secp384r1_sha384, NID_sha384, EVP_PKEY_EC},
{TLSEXT_SIGALG_ecdsa_secp521r1_sha512, NID_sha512, EVP_PKEY_EC},