From: Hugo Landau Date: Tue, 13 Dec 2022 12:34:36 +0000 (+0000) Subject: QUIC: Back out version string change X-Git-Tag: openssl-3.2.0-alpha1~1475 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0651e0547490af29b33ce9fd55eb20b2f1499c51;p=thirdparty%2Fopenssl.git QUIC: Back out version string change Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/19703) --- diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c index 6cff4134f1d..9db3c280730 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;