devel/android-tools-adb-devel: mark BoringSSL function as static

This commit is contained in:
Jan Beich 2016-06-30 15:31:29 +00:00
parent 624eee2f9c
commit b045ae83c3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=417831

View file

@ -16,7 +16,7 @@
+#if !defined(OPENSSL_IS_BORINGSSL)
+// https://boringssl.googlesource.com/boringssl/+/6601402%5E!/
+int EVP_EncodedLength(size_t *out_len, size_t len) {
+static int EVP_EncodedLength(size_t *out_len, size_t len) {
+ if (len + 2 < len) {
+ return 0;
+ }