fix missing closing crlf in chunked streams

This commit is contained in:
Simon Cruanes 2023-02-04 23:52:30 -05:00
parent c81ca48fbd
commit 6f03c521a6
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4

View file

@ -327,4 +327,6 @@ let output_chunked (oc:out_channel) (self:t) : unit =
);
output_string oc "\r\n";
done;
(* write another crlf after the stream (see #56) *)
output_string oc "\r\n";
()