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.
This commit is contained in:
Christopher Faulet 2026-05-05 16:07:13 +02:00
parent 1bc050bc49
commit b945a3207b

View File

@ -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;