]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CLEANUP: quic: fix typo in quic_tx trace
authorAmaury Denoyelle <adenoyelle@haproxy.com>
Mon, 8 Sep 2025 09:56:12 +0000 (11:56 +0200)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Mon, 8 Sep 2025 12:49:03 +0000 (14:49 +0200)
Fix trace in qc_may_build_pkt().

This can be backported up to 3.0.

src/quic_tx.c

index 7b57e0135f36ef2b2016b2a11a3c3f839a265c60..4c6d64518fb62ff65daf9a32d48d4ba3a7d6a451 100644 (file)
@@ -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);