From: Pascal Bellard Date: Fri, 11 Mar 2011 22:40:27 +0000 (+0100) Subject: chsum: fix X-Git-Tag: 1_19_0~232 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=48b6f59e19613d497148ecf1033ce75c74baa8a7;p=oweals%2Fbusybox.git chsum: fix Signed-off-by: Pascal Bellard Signed-off-by: Denys Vlasenko --- diff --git a/coreutils/cksum.c b/coreutils/cksum.c index 7a37e6add..53fb87a78 100644 --- a/coreutils/cksum.c +++ b/coreutils/cksum.c @@ -38,6 +38,7 @@ int cksum_main(int argc UNUSED_PARAM, char **argv) #define read_buf bb_common_bufsiz1 while ((bytes_read = safe_read(fd, read_buf, sizeof(read_buf))) > 0) { + length += bytes_read; crc = crc32_block_endian1(crc, read_buf, bytes_read, crc32_table); } close(fd);