mirror of
https://github.com/openssl/openssl.git
synced 2024-12-18 22:43:41 +08:00
Use correct variable in test diagnostic
create_ssl_connection() prints out the results if SSL_accept() and/or SSL_connect() fail, but was reusing the client return value when printing about SSL_accept() failures. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2279)
This commit is contained in:
parent
0f82d2f584
commit
694c9180d7
@ -669,7 +669,7 @@ int create_ssl_connection(SSL *serverssl, SSL *clientssl)
|
||||
}
|
||||
|
||||
if (!servererr && rets <= 0 && err != SSL_ERROR_WANT_READ) {
|
||||
printf("SSL_accept() failed %d, %d\n", retc, err);
|
||||
printf("SSL_accept() failed %d, %d\n", rets, err);
|
||||
servererr = 1;
|
||||
}
|
||||
if (clienterr && servererr)
|
||||
|
Loading…
Reference in New Issue
Block a user