From eadebcc863f8ff4c7bfa140dc9fdf8c2d21b899d Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Mon, 27 Nov 2023 07:57:32 +0000 Subject: [PATCH] QUIC TSERVER: Fix erroneously static variable Reviewed-by: Richard Levitte Reviewed-by: Matt Caswell Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/22828) --- ssl/quic/quic_tserver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/quic/quic_tserver.c b/ssl/quic/quic_tserver.c index 3fc51b4a778..130733821cf 100644 --- a/ssl/quic/quic_tserver.c +++ b/ssl/quic/quic_tserver.c @@ -53,7 +53,7 @@ static int alpn_select_cb(SSL *ssl, const unsigned char **out, static const unsigned char alpndeflt[] = { 8, 'o', 's', 's', 'l', 't', 'e', 's', 't' }; - static const unsigned char *alpn; + const unsigned char *alpn; size_t alpnlen; if (srv->args.alpn == NULL) { -- 2.47.2