From 6925a94839794a6712db181bd1a8ccf948deb4ff Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 8 Nov 2016 23:22:11 +0000 Subject: [PATCH] Ensure the key and iv labels are declared as static Fixes a travis failure Reviewed-by: Rich Salz --- ssl/tls13_enc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.25.1