From 64835258f7687b69d1046d035bf32aef12b26c28 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Sat, 9 Jun 2012 08:38:46 +0000 Subject: busybox 1.20.1: add patches for ash, ifupdown, man and tar Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/busybox/busybox-1.20.1/busybox-1.20.1-tar.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 package/busybox/busybox-1.20.1/busybox-1.20.1-tar.patch (limited to 'package/busybox/busybox-1.20.1/busybox-1.20.1-tar.patch') 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 new file mode 100644 index 000000000..4129b6517 --- /dev/null +++ b/package/busybox/busybox-1.20.1/busybox-1.20.1-tar.patch @@ -0,0 +1,11 @@ +--- 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; + } -- cgit v1.2.3-55-g7522