- Fix SSL compile failure for other missing definitions in

log_crypto_err_io_code_arg.
This commit is contained in:
W.C.A. Wijngaards 2023-11-01 14:20:52 +01:00
parent b1d99bb6b6
commit 5f78f67e39
2 changed files with 6 additions and 0 deletions

View file

@ -4,6 +4,8 @@
1 November 2023: Wouter
- Fix SSL compile failure for definition in log_crypto_err_io_code_arg.
- Fix SSL compile failure for other missing definitions in
log_crypto_err_io_code_arg.
31 October 2023: George
- Fix #941: dnscrypt doesn't work after upgrade to 1.18 with

View file

@ -982,12 +982,16 @@ static void log_crypto_err_io_code_arg(const char* str, int r,
case SSL_ERROR_WANT_X509_LOOKUP:
inf = "want X509 lookup";
break;
#ifdef SSL_ERROR_WANT_ASYNC
case SSL_ERROR_WANT_ASYNC:
inf = "want async";
break;
#endif
#ifdef SSL_ERROR_WANT_ASYNC_JOB
case SSL_ERROR_WANT_ASYNC_JOB:
inf = "want async job";
break;
#endif
#ifdef SSL_ERROR_WANT_CLIENT_HELLO_CB
case SSL_ERROR_WANT_CLIENT_HELLO_CB:
inf = "want client hello cb";