aboutsummaryrefslogtreecommitdiff
path: root/archival/unzip.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-04-18 02:34:29 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2016-04-18 02:38:32 +0200
commit5598bdf0d3d46a865a4d23785e2d09e6db9be420 (patch)
treeedae478a1b025b0aee5a9a165f180da7dc4f18f0 /archival/unzip.c
parent07bd9799217038391c8d299e6a2e031fef23c20b (diff)
downloadbusybox-w32-5598bdf0d3d46a865a4d23785e2d09e6db9be420.tar.gz
busybox-w32-5598bdf0d3d46a865a4d23785e2d09e6db9be420.tar.bz2
busybox-w32-5598bdf0d3d46a865a4d23785e2d09e6db9be420.zip
unzip: shorter code for date/time generation
function old new delta unzip_main 2426 2414 -12 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'archival/unzip.c')
-rw-r--r--archival/unzip.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/archival/unzip.c b/archival/unzip.c
index a7532e0ff..be32e60e2 100644
--- a/archival/unzip.c
+++ b/archival/unzip.c
@@ -642,14 +642,14 @@ int unzip_main(int argc, char **argv)
642 } else { 642 } else {
643 if (listing) { 643 if (listing) {
644 /* List entry */ 644 /* List entry */
645 unsigned dostime = zip_header.formatted.modtime | (zip_header.formatted.moddate << 16);
646 char dtbuf[sizeof("mm-dd-yyyy hh:mm")]; 645 char dtbuf[sizeof("mm-dd-yyyy hh:mm")];
647 sprintf(dtbuf, "%02u-%02u-%04u %02u:%02u", 646 sprintf(dtbuf, "%02u-%02u-%04u %02u:%02u",
648 (dostime & 0x01e00000) >> 21, 647 (zip_header.formatted.moddate >> 5) & 0xf, // mm: 0x01e0
649 (dostime & 0x001f0000) >> 16, 648 (zip_header.formatted.moddate) & 0x1f, // dd: 0x001f
650 ((dostime & 0xfe000000) >> 25) + 1980, 649 (zip_header.formatted.moddate >> 9) + 1980, // yy: 0xfe00
651 (dostime & 0x0000f800) >> 11, 650 (zip_header.formatted.modtime >> 11), // hh: 0xf800
652 (dostime & 0x000007e0) >> 5 651 (zip_header.formatted.modtime >> 5) & 0x3f // mm: 0x07e0
652 // seconds/2 are not shown, encoded in ----------- 0x001f
653 ); 653 );
654 if (!verbose) { 654 if (!verbose) {
655 // " Length Date Time Name\n" 655 // " Length Date Time Name\n"