Skip to content

Commit

Permalink
QUIC TSERVER: Fix erroneously static variable
Browse files Browse the repository at this point in the history
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
(Merged from #22828)
  • Loading branch information
hlandau committed Nov 27, 2023
1 parent c30aee7 commit eadebcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssl/quic/quic_tserver.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit eadebcc

Please sign in to comment.