From 2513b1dd7b0f8b9930041ad447cd18b849671de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Fri, 7 Apr 2023 15:39:17 +0200 Subject: [PATCH] MINOR: quic: Trace fix in quic_pto_pktns() (handshaske status) The handshake must be confirmed before probing the 01RTT packet number space. Must be backported to 2.7 and 2.6. --- src/quic_loss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic_loss.c b/src/quic_loss.c index bb518ca25..888b61d5b 100644 --- a/src/quic_loss.c +++ b/src/quic_loss.c @@ -118,7 +118,7 @@ struct quic_pktns *quic_pto_pktns(struct quic_conn *qc, if (i == QUIC_TLS_PKTNS_01RTT) { if (!handshake_confirmed) { - TRACE_STATE("TX PTO handshake not already completed", QUIC_EV_CONN_SPTO, qc); + TRACE_STATE("TX PTO handshake not already confirmed", QUIC_EV_CONN_SPTO, qc); pktns = p; goto out; }