mirror of
https://github.com/openssl/openssl.git
synced 2024-12-19 15:03:38 +08:00
Ensure the key and iv labels are declared as static
Fixes a travis failure Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
134bfe56c4
commit
6925a94839
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user