From: W.C.A. Wijngaards Date: Wed, 1 Nov 2023 13:14:02 +0000 (+0100) Subject: - Fix SSL compile failure for definition in log_crypto_err_io_code_arg. X-Git-Tag: release-1.19.0rc1~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b1d99bb6b6b4bfc1c968763d0fcd67d558b50a82;p=thirdparty%2Funbound.git - Fix SSL compile failure for definition in log_crypto_err_io_code_arg. --- diff --git a/doc/Changelog b/doc/Changelog index 8aa3d494f..28dcdf01a 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -2,6 +2,9 @@ - Mention flex and bison in README.md when building from repository source. +1 November 2023: Wouter + - Fix SSL compile failure for definition in log_crypto_err_io_code_arg. + 31 October 2023: George - Fix #941: dnscrypt doesn't work after upgrade to 1.18 with suggestion by dukeartem to also fix the udp_ancil with dnscrypt. diff --git a/util/net_help.c b/util/net_help.c index 16692b788..bbb75ebd7 100644 --- a/util/net_help.c +++ b/util/net_help.c @@ -988,9 +988,11 @@ static void log_crypto_err_io_code_arg(const char* str, int r, case SSL_ERROR_WANT_ASYNC_JOB: inf = "want async job"; break; +#ifdef SSL_ERROR_WANT_CLIENT_HELLO_CB case SSL_ERROR_WANT_CLIENT_HELLO_CB: inf = "want client hello cb"; break; +#endif case SSL_ERROR_SYSCALL: print_errno = 1; inf = "syscall";