]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: quic: Traces fix about remaining frames upon packet build failure
authorFrédéric Lécaille <flecaille@haproxy.com>
Mon, 25 Apr 2022 15:48:40 +0000 (17:48 +0200)
committerAmaury Denoyelle <adenoyelle@haproxy.com>
Thu, 28 Apr 2022 14:22:40 +0000 (16:22 +0200)
src/xprt_quic.c

index 08bd88b13e23ee634a1052fefbfebc740ee2472b..f1e4d28fe0bf50e5025ee3efe62340a509aa1811 100644 (file)
@@ -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;
 }