1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-25 17:48:48 -05:00

quiche: show the actual version number

This commit is contained in:
Daniel Stenberg 2019-08-05 23:12:59 +02:00
parent dc35631ef7
commit e9bbc81299
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -401,7 +401,7 @@ static ssize_t h3_stream_send(struct connectdata *conn,
*/ */
int Curl_quic_ver(char *p, size_t len) int Curl_quic_ver(char *p, size_t len)
{ {
return msnprintf(p, len, " quiche"); return msnprintf(p, len, " quiche/%s", quiche_version());
} }
#ifdef DEBUG_HTTP3 #ifdef DEBUG_HTTP3