1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Correct an embarrassingly wrong comment.

[originally from svn r6926]
This commit is contained in:
Simon Tatham 2006-11-28 21:51:54 +00:00
parent fd6d9bd677
commit 2226098a9e

View File

@ -698,9 +698,9 @@ int zlib_compress_block(void *handle, unsigned char *block, int len,
/*
* Start a Deflate (RFC1951) uncompressed block. We
* transmit a zero bit (BFINAL=0), followed by a zero
* bit and a one bit (BTYPE=00). Of course these are in
* the wrong order (00 0).
* transmit a zero bit (BFINAL=0), followed by two more
* zero bits (BTYPE=00). Of course these are in the
* wrong order (00 0), not that it matters.
*/
outbits(out, 0, 3);