summaryrefslogtreecommitdiffstats
path: root/package/busybox/busybox-1.20.1/busybox-1.20.1-tar.patch
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2012-07-02 07:04:44 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-07-02 20:24:21 +0200
commitaaa8125a9376431cf9b231ea146f6614bd8f5c26 (patch)
treef34b8d52420679077a824ffa87aad5c43a14f73f /package/busybox/busybox-1.20.1/busybox-1.20.1-tar.patch
parent91123a6fab2770ced312fc54a69f4d83f3a2e1e5 (diff)
downloadbuildroot-novena-aaa8125a9376431cf9b231ea146f6614bd8f5c26.tar.gz
buildroot-novena-aaa8125a9376431cf9b231ea146f6614bd8f5c26.zip
busybox: bump 1.20.x series to 1.20.2
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/busybox/busybox-1.20.1/busybox-1.20.1-tar.patch')
-rw-r--r--package/busybox/busybox-1.20.1/busybox-1.20.1-tar.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/package/busybox/busybox-1.20.1/busybox-1.20.1-tar.patch b/package/busybox/busybox-1.20.1/busybox-1.20.1-tar.patch
deleted file mode 100644
index 4129b6517..000000000
--- a/package/busybox/busybox-1.20.1/busybox-1.20.1-tar.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- busybox-1.20.1/archival/libarchive/get_header_tar.c
-+++ busybox-1.20.1-tar/archival/libarchive/get_header_tar.c
-@@ -84,7 +84,7 @@ static unsigned long long getOctal(char
- first >>= 1; /* now 7th bit = 6th bit */
- v = first; /* sign-extend 8 bits to 64 */
- while (--len != 0)
-- v = (v << 8) + (unsigned char) *str++;
-+ v = (v << 8) + (uint8_t) *++str;
- }
- return v;
- }