diff options
author | Yiming Jing <jingyiming@baidu.com> | 2019-04-30 15:46:46 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-05-01 23:25:05 +0200 |
commit | 6ab569ce0b2f2418b591eb5f28539447debb14a7 (patch) | |
tree | 47653fa3b455e494f332d7d6e64407651bbf6009 /lib | |
parent | 41fcdf71a1cb530879b19cb097768d04c5e74af4 (diff) |
travis: upgrade the MesaLink TLS backend to v1.0.0
Closes #3823
Closes #3776
Diffstat (limited to 'lib')
-rw-r--r-- | lib/vtls/mesalink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/mesalink.c b/lib/vtls/mesalink.c index db1411559..718c282ee 100644 --- a/lib/vtls/mesalink.c +++ b/lib/vtls/mesalink.c @@ -268,7 +268,7 @@ mesalink_connect_step2(struct connectdata *conn, int sockindex) char error_buffer[MESALINK_MAX_ERROR_SZ]; int detail = SSL_get_error(BACKEND->handle, ret); - if(SSL_ERROR_WANT_CONNECT == detail) { + if(SSL_ERROR_WANT_CONNECT == detail || SSL_ERROR_WANT_READ == detail) { connssl->connecting_state = ssl_connect_2_reading; return CURLE_OK; } |