summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-04-21 11:00:35 -0700
committerBrian Carlstrom <bdc@google.com>2015-04-21 12:23:13 -0700
commit7b65be27307e0e06f54bb2e4139b14cca1c9aebf (patch)
tree9a912ae10ac75f0d5d6e9c4b969fa678438631d3
parent2f37b832b1ed6436e6c654b6bac3f99b24d01286 (diff)
downloadexternal_boringssl-7b65be27307e0e06f54bb2e4139b14cca1c9aebf.zip
external_boringssl-7b65be27307e0e06f54bb2e4139b14cca1c9aebf.tar.gz
external_boringssl-7b65be27307e0e06f54bb2e4139b14cca1c9aebf.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 (cherry picked from commit 217eaab310220731646f2a1a0159d71e4eb09d4a) Change-Id: Iec03fe771b131c9bc7547bd163c338eb6636a6e7
-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. */