summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-04-21 11:00:35 -0700
committerAdam Langley <agl@google.com>2015-04-21 11:00:35 -0700
commit217eaab310220731646f2a1a0159d71e4eb09d4a (patch)
tree9a912ae10ac75f0d5d6e9c4b969fa678438631d3
parent830beae6ebcc7761769f86a354a2d3d5fdc54507 (diff)
downloadexternal_boringssl-217eaab310220731646f2a1a0159d71e4eb09d4a.zip
external_boringssl-217eaab310220731646f2a1a0159d71e4eb09d4a.tar.gz
external_boringssl-217eaab310220731646f2a1a0159d71e4eb09d4a.tar.bz2
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
-rw-r--r--src/include/openssl/ec.h4
1 files changed, 2 insertions, 2 deletions
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. */