travis: upgrade the MesaLink TLS backend to v1.0.0

Closes #3823
Closes #3776
This commit is contained in:
Yiming Jing 2019-04-30 15:46:46 -07:00 committed by Daniel Stenberg
parent 41fcdf71a1
commit 6ab569ce0b
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
2 changed files with 30 additions and 1 deletions

View file

@ -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;
}