commit | 27516f7c9762c2b21ff4add87aa5b7ac41237575 | [log] [tgz] |
---|---|---|
author | Adam Langley <agl@google.com> | Tue Jul 12 10:26:56 2016 -0700 |
committer | David Benjamin <davidben@google.com> | Tue Jul 12 17:54:41 2016 +0000 |
tree | 7d04e41240cf748c10c71a1848b5cca5f9bca7b0 | |
parent | ea9a0d5313f4244f2765e02d762788c1cb9be72a [diff] [blame] |
Add no-op function ENGINE_register_all_complete. libssh2 expects this function. Change-Id: Ie2d6ceb25d1b633e1363e82f8a6c187b75a4319f Reviewed-on: https://boringssl-review.googlesource.com/8735 Reviewed-by: David Benjamin <davidben@google.com>
diff --git a/crypto/crypto.c b/crypto/crypto.c index c9f2bc8..2443126 100644 --- a/crypto/crypto.c +++ b/crypto/crypto.c
@@ -153,6 +153,10 @@ void ENGINE_load_builtin_engines(void) {} +int ENGINE_register_all_complete(void) { + return 1; +} + void OPENSSL_load_builtin_modules(void) {} int FIPS_mode(void) { return 0; }