chsum: fix
authorPascal Bellard <pascal.bellard@ads-lu.com>
Fri, 11 Mar 2011 22:40:27 +0000 (23:40 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Fri, 11 Mar 2011 22:40:27 +0000 (23:40 +0100)
Signed-off-by: Pascal Bellard <pascal.bellard@ads-lu.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
coreutils/cksum.c

index 7a37e6a..53fb87a 100644 (file)
@@ -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);