mirror of
https://github.com/curl/curl.git
synced 2026-05-13 19:56:20 +03:00
osslq: remove the TLS library from the version output
Since we only support using a single TLS library at any one time, we know that the TLS library for QUIC is the same that is also shown for regular TLS. Fixes #12763 Reported-by: Viktor Szakats Closes #12767
This commit is contained in:
parent
5125ddbb10
commit
e17b89db8f
1 changed files with 1 additions and 3 deletions
|
|
@ -2231,9 +2231,7 @@ bool Curl_conn_is_osslq(const struct Curl_easy *data,
|
|||
void Curl_osslq_ver(char *p, size_t len)
|
||||
{
|
||||
const nghttp3_info *ht3 = nghttp3_version(0);
|
||||
char tmp[128];
|
||||
Curl_ssl_version(tmp, sizeof(tmp)-1);
|
||||
(void)msnprintf(p, len, "%s nghttp3/%s", tmp, ht3->version_str);
|
||||
(void)msnprintf(p, len, "nghttp3/%s", ht3->version_str);
|
||||
}
|
||||
|
||||
#endif /* USE_OPENSSL_QUIC && USE_NGHTTP3 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue