From 640c6d0563fc2720cb2766b9649e9b10bb47faeb Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com> Date: Fri, 21 Aug 2020 21:21:01 +0900 Subject: [PATCH] Fix ALPN --- examples/h09server.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/h09server.cc b/examples/h09server.cc index c368005d..4a057323 100644 --- a/examples/h09server.cc +++ b/examples/h09server.cc @@ -2558,8 +2558,7 @@ int alpn_select_proto_cb(SSL *ssl, const unsigned char **out, } if (!config.quiet) { - std::cerr << "Client did not present ALPN " << &NGHTTP3_ALPN_H3[1] - << std::endl; + std::cerr << "Client did not present ALPN " << &HQ_ALPN[1] << std::endl; } return SSL_TLSEXT_ERR_ALERT_FATAL; -- GitLab