]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix SSL compile failure for definition in log_crypto_err_io_code_arg.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 1 Nov 2023 13:14:02 +0000 (14:14 +0100)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 1 Nov 2023 13:14:02 +0000 (14:14 +0100)
doc/Changelog
util/net_help.c

index 8aa3d494f086c81c6b3ae5d479595307a20a4905..28dcdf01a4d72fa44162bfe7109d820afbe6be93 100644 (file)
@@ -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.
index 16692b788d578a4bcbfc4df1285db65cfc091d31..bbb75ebd711cd7dca0ffd86d0855e71408ff815e 100644 (file)
@@ -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";