From: Peter Korsgaard Date: Fri, 11 Mar 2011 23:03:52 +0000 (+0100) Subject: busybox: 1.18.3 cksum fix X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=03a5df1353f7f154f26edaac1d60d30976774656;p=buildroot.git busybox: 1.18.3 cksum fix Signed-off-by: Peter Korsgaard --- diff --git a/package/busybox/busybox-1.18.3/busybox-1.18.3-cksum.patch b/package/busybox/busybox-1.18.3/busybox-1.18.3-cksum.patch new file mode 100644 index 0000000000..97b05a080a --- /dev/null +++ b/package/busybox/busybox-1.18.3/busybox-1.18.3-cksum.patch @@ -0,0 +1,10 @@ +--- busybox-1.18.3/coreutils/cksum.c ++++ busybox-1.18.3-cksum/coreutils/cksum.c +@@ -38,6 +38,7 @@ int cksum_main(int argc UNUSED_PARAM, ch + + #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);