From: Hugo Landau Date: Mon, 27 Nov 2023 07:57:32 +0000 (+0000) Subject: QUIC TSERVER: Fix erroneously static variable X-Git-Tag: openssl-3.3.0-alpha1~562 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eadebcc863f8ff4c7bfa140dc9fdf8c2d21b899d;p=thirdparty%2Fopenssl.git 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) --- 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) {