Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2016-01-23 23:19:50 +0300
committerAdam Langley <agl@google.com>2016-01-26 02:09:08 +0300
commit5aae776ede56b64e0a6593fb45537687ab36092b (patch)
treea3846940b8e58fb3081dee95b7530d07eb0c6f40 /crypto/hkdf
parent75a64c08fc63ee9619214be5607a48ae9c97fdcc (diff)
Remove calls to ERR_load_crypto_strings.
Since the error string logic was rewritten, this hasn't done anything. Change-Id: Icb73dca65e852bb3c7d04c260d591906ec72c15f Reviewed-on: https://boringssl-review.googlesource.com/6961 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/hkdf')
-rw-r--r--crypto/hkdf/hkdf_test.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/hkdf/hkdf_test.c b/crypto/hkdf/hkdf_test.c
index 63070dc4..a4abf1c4 100644
--- a/crypto/hkdf/hkdf_test.c
+++ b/crypto/hkdf/hkdf_test.c
@@ -216,7 +216,6 @@ int main(void) {
size_t i;
CRYPTO_library_init();
- ERR_load_crypto_strings();
for (i = 0; i < sizeof(kTests) / sizeof(kTests[0]); i++) {
const hkdf_test_vector_t *test = &kTests[i];