diff options
author | Matt Caswell <matt@openssl.org> | 2015-10-05 11:49:15 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-10-30 09:39:46 +0100 |
commit | 5998e2903589e7b19e102ebff06521f2dcb60409 (patch) | |
tree | 1936f69be6ec84baebef62d5ea72f5f0cdcba63e /apps/s_server.c | |
parent | Move |no_cert_verify| into state machine (diff) | |
download | openssl-5998e2903589e7b19e102ebff06521f2dcb60409.tar.xz openssl-5998e2903589e7b19e102ebff06521f2dcb60409.zip |
Remove SSL_state and SSL_set_state
SSL_state has been replaced by SSL_get_state and SSL_set_state is no longer
supported.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/s_server.c')
-rw-r--r-- | apps/s_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/s_server.c b/apps/s_server.c index f897c4fb82..aa01d43fb1 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -2428,7 +2428,7 @@ static int init_ssl_connection(SSL *con) #ifdef CERT_CB_TEST_RETRY { while (i <= 0 && SSL_get_error(con, i) == SSL_ERROR_WANT_X509_LOOKUP - && SSL_state(con) == TLS_ST_SR_CLNT_HELLO) { + && SSL_get_state(con) == TLS_ST_SR_CLNT_HELLO) { BIO_printf(bio_err, "LOOKUP from certificate callback during accept\n"); i = SSL_accept(con); |