src/openssl.c: Use SSL_state() instead of ssl_st.state

Changes in OpenSSL 1.0.2 API hides ssl_st structure members.
Reported-by: Gisle Vanem <gvanem@yahoo.no>
This commit is contained in:
Tim Rühsen 2015-02-09 10:05:07 +01:00
parent 07a350d30c
commit c83f344564
1 changed files with 1 additions and 1 deletions

View File

@ -545,7 +545,7 @@ ssl_connect_wget (int fd, const char *hostname)
DEBUGP (("SSL handshake timed out.\n"));
goto timeout;
}
if (scwt_ctx.result <= 0 || conn->state != SSL_ST_OK)
if (scwt_ctx.result <= 0 || SSL_state(conn) != SSL_ST_OK)
goto error;
ctx = xnew0 (struct openssl_transport_context);