summaryrefslogtreecommitdiff
path: root/recipes/busybox/busybox-1.13.2/busybox-1.13.2-unzip.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2009-04-14 16:31:48 -0700
committerKhem Raj <raj.khem@gmail.com>2009-04-14 16:31:48 -0700
commit3189734f8d6b1287c757cb9664d7e045ab3c57d7 (patch)
tree5c3d50c45086d94994eb5c750f3c3d9ae9b5c924 /recipes/busybox/busybox-1.13.2/busybox-1.13.2-unzip.patch
parent9396869c27c4f4cbf093c356a8df20965ee929ad (diff)
parent06b6c395daf1cc41c95f8e2f094ea3b1e97d6d7b (diff)
Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/busybox/busybox-1.13.2/busybox-1.13.2-unzip.patch')
-rw-r--r--recipes/busybox/busybox-1.13.2/busybox-1.13.2-unzip.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/recipes/busybox/busybox-1.13.2/busybox-1.13.2-unzip.patch b/recipes/busybox/busybox-1.13.2/busybox-1.13.2-unzip.patch
new file mode 100644
index 0000000000..6b3f713ac5
--- /dev/null
+++ b/recipes/busybox/busybox-1.13.2/busybox-1.13.2-unzip.patch
@@ -0,0 +1,12 @@
+diff -urpN busybox-1.13.2/archival/unzip.c busybox-1.13.2-unzip/archival/unzip.c
+--- busybox-1.13.2/archival/unzip.c 2008-11-09 18:28:02.000000000 +0100
++++ busybox-1.13.2-unzip/archival/unzip.c 2009-02-26 12:17:21.000000000 +0100
+@@ -140,7 +140,7 @@ struct BUG_cde_header_must_be_16_bytes {
+ };
+
+ #define FIX_ENDIANNESS_CDE(cde_header) do { \
+- (cde_header).formatted.cds_offset = SWAP_LE16((cde_header).formatted.cds_offset); \
++ (cde_header).formatted.cds_offset = SWAP_LE32((cde_header).formatted.cds_offset); \
+ } while (0)
+
+ enum { zip_fd = 3 };