From: Frédéric Lécaille Date: Thu, 8 Sep 2022 14:04:55 +0000 (+0200) Subject: MINOR: h3: Missing connection argument for a TRACE_LEAVE() argument X-Git-Tag: v2.7-dev6~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=befcf7031d79298ab68c0d19ba77fa991aa9f024;p=thirdparty%2Fhaproxy.git MINOR: h3: Missing connection argument for a TRACE_LEAVE() argument This should help in debbuging issues to be able to associate this trace to a QUIC connection. Must be backported to 2.6. --- diff --git a/src/h3.c b/src/h3.c index f1cf4e15eb..e42089d213 100644 --- a/src/h3.c +++ b/src/h3.c @@ -605,7 +605,7 @@ static ssize_t h3_parse_settings_frm(struct h3c *h3c, const struct buffer *buf, } } - TRACE_LEAVE(H3_EV_RX_FRAME|H3_EV_RX_SETTINGS); + TRACE_LEAVE(H3_EV_RX_FRAME|H3_EV_RX_SETTINGS, h3c->qcc->conn); return ret; }