From: Christopher Faulet Date: Tue, 12 Dec 2023 13:04:35 +0000 (+0100) Subject: CLEANUP: mux-h1: Fix a trace message about C-L header addition X-Git-Tag: v3.0-dev1~96 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=65ca4442401c527530f5b456a8ed47a35c224480;p=thirdparty%2Fhaproxy.git CLEANUP: mux-h1: Fix a trace message about C-L header addition This fixes a cut-paste error on a trace message notifying a 'Content-Length' header was added during the HTTP message formatting. --- diff --git a/src/mux_h1.c b/src/mux_h1.c index 8adfeac15b..c324c2fb96 100644 --- a/src/mux_h1.c +++ b/src/mux_h1.c @@ -2392,7 +2392,7 @@ static size_t h1_make_eoh(struct h1s *h1s, struct h1m *h1m, struct htx *htx, siz h1_adjust_case_outgoing_hdr(h1s, h1m, &n); if (!h1_format_htx_hdr(n, v, &outbuf)) goto full; - TRACE_STATE("add \"Content-Length: chunked\"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s); + TRACE_STATE("add \"Content-Length: \"", H1_EV_TX_DATA|H1_EV_TX_HDRS, h1c->conn, h1s); h1s->flags |= H1S_F_HAVE_CLEN; }