From b945a3207b814922166e44408b182f577a368713 Mon Sep 17 00:00:00 2001 From: Christopher Faulet Date: Tue, 5 May 2026 16:07:13 +0200 Subject: [PATCH] BUG/MINOR: haterm: Don't set HTX_FL_EOM flag on 100-Continue responses A 100-Continue response is an intermediary message. So the end of message must not be announed. --- src/haterm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/haterm.c b/src/haterm.c index 11bab6a22..ea0d40cc8 100644 --- a/src/haterm.c +++ b/src/haterm.c @@ -523,7 +523,6 @@ static int hstream_build_http_100_continue_resp(struct hstream *hs) goto err; } - htx->flags |= HTX_FL_EOM; htx_to_buf(htx, buf); sl->info.res.status = 100; ret = 1;