From: Daniel Johnson Date: Tue, 21 Jul 2020 05:20:43 +0000 (-0700) Subject: [deflate] Fix typo in comment describing length codes X-Git-Tag: v1.21.1~114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bc85ec6fa3562e141f5d09a8788aca92877e784;p=thirdparty%2Fipxe.git [deflate] Fix typo in comment describing length codes Signed-off-by: Michael Brown --- diff --git a/src/crypto/deflate.c b/src/crypto/deflate.c index e1c87d5fe..7ad39ec1b 100644 --- a/src/crypto/deflate.c +++ b/src/crypto/deflate.c @@ -56,7 +56,7 @@ static uint8_t deflate_reverse[256]; * does not fit the pattern (it represents a length of 258; following * the pattern from the earlier codes would give a length of 259), and * has no extra bits. Codes 286-287 are invalid, but can occur. We - * treat any code greater than 284 as meaning "length 285, no extra + * treat any code greater than 284 as meaning "length 258, no extra * bits". */ static uint8_t deflate_litlen_base[28];