From d8b798d7ef01b4927144917a791d23aeab0700c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Mon, 25 Apr 2022 17:48:40 +0200 Subject: [PATCH] BUG/MINOR: quic: Traces fix about remaining frames upon packet build failure --- src/xprt_quic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xprt_quic.c b/src/xprt_quic.c index 08bd88b13..f1e4d28fe 100644 --- a/src/xprt_quic.c +++ b/src/xprt_quic.c @@ -5888,7 +5888,7 @@ static int qc_do_build_pkt(unsigned char *pos, const unsigned char *end, no_room: /* Replace the pre-built frames which could not be add to this packet */ LIST_SPLICE(frms, &frm_list); - TRACE_PROTO("Remaining ack-eliciting frames", QUIC_EV_CONN_HPKT, qc, pkt); + TRACE_PROTO("Remaining ack-eliciting frames", QUIC_EV_CONN_FRMLIST, qc, frms); return 0; }