From 95efe41d2e76501f4900eb6a5dece159fb1312df Mon Sep 17 00:00:00 2001 From: Nikolas Gauder Date: Mon, 4 Aug 2025 23:47:23 +0200 Subject: [PATCH] ssl/quic/quic_channel.c: Fix endianness of supported versions from received version negotiation packets Reviewed-by: Neil Horman Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/28169) --- ssl/quic/quic_channel.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ssl/quic/quic_channel.c b/ssl/quic/quic_channel.c index f8e4252ba48..83253910c4e 100644 --- a/ssl/quic/quic_channel.c +++ b/ssl/quic/quic_channel.c @@ -2423,7 +2423,6 @@ static void ch_rx_handle_packet(QUIC_CHANNEL *ch, int channel_only) if (!PACKET_get_net_4(&vpkt, &supported_ver)) return; - supported_ver = ntohl(supported_ver); if (supported_ver == QUIC_VERSION_1) { /* * If the server supports version 1, set it as -- 2.47.2