summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-12-13 12:34:36 +0000
committerHugo Landau <hlandau@openssl.org>2023-01-13 13:20:21 +0000
commit0651e0547490af29b33ce9fd55eb20b2f1499c51 (patch)
tree5a74869900adb6a61d08b52f788582e0e98f00a8 /ssl
parent2fff884c86a7a0497c10a73da74b006d5e6e9039 (diff)
QUIC: Back out version string change
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19703)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_lib.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index 6cff4134f1..9db3c28073 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -4652,12 +4652,6 @@ const char *ssl_protocol_to_string(int version)
const char *SSL_get_version(const SSL *s)
{
const SSL_CONNECTION *sc = SSL_CONNECTION_FROM_CONST_SSL(s);
-#ifndef OPENSSL_NO_QUIC
- const QUIC_CONNECTION *qc = QUIC_CONNECTION_FROM_CONST_SSL(s);
-
- if (qc != NULL)
- return "QUICv1";
-#endif
if (sc == NULL)
return NULL;