From befcf7031d79298ab68c0d19ba77fa991aa9f024 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20L=C3=A9caille?= Date: Thu, 8 Sep 2022 16:04:55 +0200 Subject: [PATCH] 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. --- src/h3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/h3.c b/src/h3.c index f1cf4e15e..e42089d21 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; }