summaryrefslogtreecommitdiffstats
path: root/android_compat_hacks.c
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-03-24 18:25:20 -0700
committerAdam Langley <agl@google.com>2015-03-24 18:28:00 -0700
commitf40f42df67fffec64967b000e4fdad4b435611a5 (patch)
tree086deea6861fc4705bb472a41a0f3aa62c4c38da /android_compat_hacks.c
parentb051df5cb1e83aa9ffdfe28406b6d9e33321912a (diff)
downloadexternal_boringssl-f40f42df67fffec64967b000e4fdad4b435611a5.zip
external_boringssl-f40f42df67fffec64967b000e4fdad4b435611a5.tar.gz
external_boringssl-f40f42df67fffec64967b000e4fdad4b435611a5.tar.bz2
Changes to work with OpenSSH and wpa_supplicant.
Change-Id: I19ed78acc67bd0ad8b905ce0ac628b39da8bb161
Diffstat (limited to 'android_compat_hacks.c')
-rw-r--r--android_compat_hacks.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/android_compat_hacks.c b/android_compat_hacks.c
index ac6a344..08377c5 100644
--- a/android_compat_hacks.c
+++ b/android_compat_hacks.c
@@ -73,3 +73,8 @@ int SSL_set_session_ticket_ext_cb(SSL *s, void *cb, void *arg) {
int SSL_set_session_secret_cb(SSL *s, void *cb, void *arg) {
return 0;
}
+
+int SSL_set_ssl_method(SSL *s, const SSL_METHOD *method) {
+ /* This is only called when EAP-FAST is being used, which is not supported. */
+ abort();
+}