summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-11-27 07:57:32 +0000
committerHugo Landau <hlandau@openssl.org>2023-11-27 07:57:32 +0000
commiteadebcc863f8ff4c7bfa140dc9fdf8c2d21b899d (patch)
treece464cb05230b86052c58f312ba943b1bb038d12 /ssl
parentc30aee71f9b93dddd33dc81b70b6ad4cb76e5dfd (diff)
QUIC TSERVER: Fix erroneously static variable
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/22828)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/quic/quic_tserver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/quic/quic_tserver.c b/ssl/quic/quic_tserver.c
index 3fc51b4a77..130733821c 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) {