]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Correct an embarrassingly wrong comment.
authorSimon Tatham <anakin@pobox.com>
Tue, 28 Nov 2006 21:51:54 +0000 (21:51 +0000)
committerSimon Tatham <anakin@pobox.com>
Tue, 28 Nov 2006 21:51:54 +0000 (21:51 +0000)
[originally from svn r6926]

sshzlib.c

index 373c77930d7a9ceeddb1ce6969011de9324f4e2a..94f0b80c8207d4d2343dfe8ed4fac39b8f457473 100644 (file)
--- a/sshzlib.c
+++ b/sshzlib.c
@@ -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);