1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-24 17:18: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)
{
return msnprintf(p, len, " quiche");
return msnprintf(p, len, " quiche/%s", quiche_version());
}
#ifdef DEBUG_HTTP3