From: Matt Caswell Date: Tue, 8 Nov 2016 23:22:11 +0000 (+0000) Subject: Ensure the key and iv labels are declared as static X-Git-Tag: OpenSSL_1_1_1-pre1~3135 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6925a94839794a6712db181bd1a8ccf948deb4ff;p=oweals%2Fopenssl.git Ensure the key and iv labels are declared as static Fixes a travis failure Reviewed-by: Rich Salz --- diff --git a/ssl/tls13_enc.c b/ssl/tls13_enc.c index 0ac54bbfb5..39a61f4461 100644 --- a/ssl/tls13_enc.c +++ b/ssl/tls13_enc.c @@ -17,8 +17,8 @@ /* Always filled with zeros */ static const unsigned char default_zeros[EVP_MAX_MD_SIZE]; -const unsigned char keylabel[] = "key"; -const unsigned char ivlabel[] = "iv"; +static const unsigned char keylabel[] = "key"; +static const unsigned char ivlabel[] = "iv"; /* * Given a |secret|; a |label| of length |labellen|; and a |hash| of the