| commit | aa3f6daa863dbd476f1cf1009a61621e8bbccd97 | [log] [tgz] |
|---|---|---|
| author | David Benjamin <davidben@chromium.org> | Thu Jan 01 16:24:36 2015 -0500 |
| committer | Adam Langley <agl@google.com> | Wed Jan 14 21:53:00 2015 +0000 |
| tree | 4ca3b7841fdafd1cc636a229814fbf73ec7b97e0 | |
| parent | 1681d79ddfd5083a35ab52ddeeb510fd1a8e55b2 [diff] [blame] |
Tag a number of globals as const. Change-Id: I6f334911f153395a2e5e26adfd08912a1d8c558b Reviewed-on: https://boringssl-review.googlesource.com/2847 Reviewed-by: Adam Langley <agl@google.com>
diff --git a/crypto/evp/evp_ctx.c b/crypto/evp/evp_ctx.c index 6616038..e1c2886 100644 --- a/crypto/evp/evp_ctx.c +++ b/crypto/evp/evp_ctx.c
@@ -69,7 +69,7 @@ extern const EVP_PKEY_METHOD hmac_pkey_meth; extern const EVP_PKEY_METHOD ec_pkey_meth; -static const EVP_PKEY_METHOD *evp_methods[] = { +static const EVP_PKEY_METHOD *const evp_methods[] = { &rsa_pkey_meth, &hmac_pkey_meth, &ec_pkey_meth,