From 65ca4442401c527530f5b456a8ed47a35c224480 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Tue, 12 Dec 2023 14:04:35 +0100 Subject: [PATCH] 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. --- src/mux_h1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mux_h1.c b/src/mux_h1.c index 8adfeac15..c324c2fb9 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; } -- 2.47.3