From fb8c6e20305a866af0a48dc5b3c82bfadbae6bf8 Mon Sep 17 00:00:00 2001 From: Amaury Denoyelle Date: Mon, 8 Sep 2025 11:56:12 +0200 Subject: [PATCH] CLEANUP: quic: fix typo in quic_tx trace Fix trace in qc_may_build_pkt(). This can be backported up to 3.0. --- src/quic_tx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quic_tx.c b/src/quic_tx.c index 7b57e0135..4c6d64518 100644 --- a/src/quic_tx.c +++ b/src/quic_tx.c @@ -203,7 +203,7 @@ static int qc_may_build_pkt(struct quic_conn *qc, struct list *frms, (force_ack || nb_aepkts_since_last_ack >= QUIC_MAX_RX_AEPKTS_SINCE_LAST_ACK)); TRACE_PRINTF(TRACE_LEVEL_DEVELOPER, QUIC_EV_CONN_PHPKTS, qc, 0, 0, 0, - "%c has_sec=%d cc=%d probe=%d must_ack=%d frms=%d prep_in_fligh=%llu cwnd=%llu", + "%c has_sec=%d cc=%d probe=%d must_ack=%d frms=%d prep_in_flight=%llu cwnd=%llu", quic_enc_level_char_from_qel(qel, qc), quic_tls_has_tx_sec(qel), cc, probe, *must_ack, LIST_ISEMPTY(frms), (ullong)qc->path->prep_in_flight, (ullong)qc->path->cwnd);