From 6848e5eeeeae8ae28bfe7dcaa8d24673923a6ee8 Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Wed, 30 Nov 2022 07:54:39 +0000 Subject: [PATCH] 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) --- ssl/ssl_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c index 7b66eb8f590..cbfac68db07 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) -- 2.47.2