diff options
author | Ron Yorston <rmy@pobox.com> | 2023-01-05 08:56:27 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2023-01-05 08:56:27 +0000 |
commit | e5e4a2fec5435192d1672e6db2f335cb5e89f877 (patch) | |
tree | 08cb827a40817ea4824bc9336d57eda669c4d4b2 /archival | |
parent | 4343f3926355f55fc023203c992527fc34bf609e (diff) | |
parent | b1884deb514c35289d37e7bfbf23f770b0bd09b3 (diff) | |
download | busybox-w32-e5e4a2fec5435192d1672e6db2f335cb5e89f877.tar.gz busybox-w32-e5e4a2fec5435192d1672e6db2f335cb5e89f877.tar.bz2 busybox-w32-e5e4a2fec5435192d1672e6db2f335cb5e89f877.zip |
Merge branch 'busybox' into merge
Diffstat (limited to 'archival')
-rw-r--r-- | archival/unzip.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archival/unzip.c b/archival/unzip.c index edfd73652..ff4f6325c 100644 --- a/archival/unzip.c +++ b/archival/unzip.c | |||
@@ -121,6 +121,8 @@ typedef union { | |||
121 | #define FIX_ENDIANNESS_ZIP(zip) \ | 121 | #define FIX_ENDIANNESS_ZIP(zip) \ |
122 | do { if (BB_BIG_ENDIAN) { \ | 122 | do { if (BB_BIG_ENDIAN) { \ |
123 | (zip).fmt.method = SWAP_LE16((zip).fmt.method ); \ | 123 | (zip).fmt.method = SWAP_LE16((zip).fmt.method ); \ |
124 | (zip).fmt.modtime = SWAP_LE16((zip).fmt.modtime ); \ | ||
125 | (zip).fmt.moddate = SWAP_LE16((zip).fmt.moddate ); \ | ||
124 | (zip).fmt.crc32 = SWAP_LE32((zip).fmt.crc32 ); \ | 126 | (zip).fmt.crc32 = SWAP_LE32((zip).fmt.crc32 ); \ |
125 | (zip).fmt.cmpsize = SWAP_LE32((zip).fmt.cmpsize ); \ | 127 | (zip).fmt.cmpsize = SWAP_LE32((zip).fmt.cmpsize ); \ |
126 | (zip).fmt.ucmpsize = SWAP_LE32((zip).fmt.ucmpsize ); \ | 128 | (zip).fmt.ucmpsize = SWAP_LE32((zip).fmt.ucmpsize ); \ |