diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-08-05 23:12:59 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-06 07:39:27 +0200 |
commit | e9bbc81299ebe978c4b51d5bdb2ab7c6683cc0aa (patch) | |
tree | d75503e8dda7e51d45b216b116f802df02c7a788 | |
parent | dc35631ef7fe314c227ba0b8529a4e0f5f383f79 (diff) |
quiche: show the actual version number
-rw-r--r-- | lib/vquic/quiche.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vquic/quiche.c b/lib/vquic/quiche.c index a70fb2237..e1b9e30ce 100644 --- a/lib/vquic/quiche.c +++ b/lib/vquic/quiche.c @@ -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 |