From: Hugo Landau Date: Wed, 30 Nov 2022 07:54:39 +0000 (+0000) Subject: QUIC Front End I/O API: Change version string X-Git-Tag: openssl-3.2.0-alpha1~1485 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=6848e5eeeeae8ae28bfe7dcaa8d24673923a6ee8 QUIC Front End I/O API: Change version string 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 7b66eb8f59..cbfac68db0 100644 --- a/ssl/ssl_lib.c +++ b/ssl/ssl_lib.c @@ -4656,7 +4656,7 @@ const char *SSL_get_version(const SSL *s) const QUIC_CONNECTION *qc = QUIC_CONNECTION_FROM_CONST_SSL(s); if (qc != NULL) - return "QUIC"; + return "QUICv1"; #endif if (sc == NULL)