From 217eaab310220731646f2a1a0159d71e4eb09d4a Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Tue, 21 Apr 2015 11:00:35 -0700 Subject: external/boringssl: export EC_GROUP_set_point_conversion_form symbol. In https://android-review.googlesource.com/#/c/147551/, I missed the OPENSSL_EXPORT tag thus the .so doesn't expose it as a dynamic symbol. BUG=20419899 Change-Id: I849888cf9a3383570b352911867e983b547e6742 --- src/include/openssl/ec.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/include/openssl/ec.h b/src/include/openssl/ec.h index 36a3a29..2662c01 100644 --- a/src/include/openssl/ec.h +++ b/src/include/openssl/ec.h @@ -305,8 +305,8 @@ OPENSSL_EXPORT int EC_METHOD_get_field_type(const EC_METHOD *meth); /* EC_GROUP_set_point_conversion_form aborts the process if |form| is not * |POINT_CONVERSION_UNCOMPRESSED| and otherwise does nothing. */ -void EC_GROUP_set_point_conversion_form(EC_GROUP *group, - point_conversion_form_t form); +OPENSSL_EXPORT void EC_GROUP_set_point_conversion_form( + EC_GROUP *group, point_conversion_form_t form); /* Old code expects to get EC_KEY from ec.h. */ -- cgit v1.1