From 3fde27d980f2f9a93a69889e5fcac5fad7edc632 Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Mon, 21 Aug 2023 15:22:57 +0200 Subject: [PATCH] BUG/MINOR: quic: ssl_quic_initial_ctx() uses error count not error code ssl_quic_initial_ctx() is supposed to use error count and not errror code. Bug was introduced by 557706b3 ("MINOR: quic: Initialize TLS contexts for QUIC openssl wrapper"). No backport needed. --- src/quic_ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic_ssl.c b/src/quic_ssl.c index 98067f67b..7043c8c62 100644 --- a/src/quic_ssl.c +++ b/src/quic_ssl.c @@ -418,7 +418,7 @@ int ssl_quic_initial_ctx(struct bind_conf *bind_conf) #endif #ifdef USE_QUIC_OPENSSL_COMPAT if (!quic_tls_compat_init(bind_conf, ctx)) - cfgerr |= ERR_ALERT | ERR_FATAL; + cfgerr++; #endif return cfgerr; -- 2.47.3