From: Tatsuhiro Tsujikawa Date: Tue, 9 Nov 2021 08:33:55 +0000 (+0900) Subject: ngtcp2: compile with the latest nghttp3 X-Git-Tag: curl-7_80_0~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d9d842989cf3d985db917b285a6369a9a17ee316;p=thirdparty%2Fcurl.git ngtcp2: compile with the latest nghttp3 Closes #7978 --- diff --git a/lib/vquic/ngtcp2.c b/lib/vquic/ngtcp2.c index a13b55ad7d..1ffc09d577 100644 --- a/lib/vquic/ngtcp2.c +++ b/lib/vquic/ngtcp2.c @@ -805,7 +805,7 @@ CURLcode Curl_quic_connect(struct Curl_easy *data, void Curl_quic_ver(char *p, size_t len) { const ngtcp2_info *ng2 = ngtcp2_version(0); - nghttp3_info *ht3 = nghttp3_version(0); + const nghttp3_info *ht3 = nghttp3_version(0); (void)msnprintf(p, len, "ngtcp2/%s nghttp3/%s", ng2->version_str, ht3->version_str); }