From b1d99bb6b6b4bfc1c968763d0fcd67d558b50a82 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Wed, 1 Nov 2023 14:14:02 +0100 Subject: [PATCH] - Fix SSL compile failure for definition in log_crypto_err_io_code_arg. --- doc/Changelog | 3 +++ util/net_help.c | 2 ++ 2 files changed, 5 insertions(+) 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";