summaryrefslogtreecommitdiff
path: root/archive-zip.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-01-12 02:34:55 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-01-12 02:34:55 (GMT)
commitd9f85f50ca35d7ed1b35e2990a0082b94f1e1370 (patch)
treef1a6b0ec024c4b8d028d6517987e5bcbe087b537 /archive-zip.c
parentbf3f167d65fec8028b488ef0ce3baaa69a571ffd (diff)
parent5ea2c847c5938e9868f15a273869e54c6ed4c79c (diff)
downloadgit-d9f85f50ca35d7ed1b35e2990a0082b94f1e1370.zip
git-d9f85f50ca35d7ed1b35e2990a0082b94f1e1370.tar.gz
git-d9f85f50ca35d7ed1b35e2990a0082b94f1e1370.tar.bz2
Merge branch 'rs/zip-with-uncompressed-size-in-the-header'
Improve compatibility of our zip output to fill uncompressed size in the header, which we can do without seeking back (even though it should not be necessary). * rs/zip-with-uncompressed-size-in-the-header: archive-zip: write uncompressed size into header even with streaming
Diffstat (limited to 'archive-zip.c')
-rw-r--r--archive-zip.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/archive-zip.c b/archive-zip.c
index 55f66b4..d3aef53 100644
--- a/archive-zip.c
+++ b/archive-zip.c
@@ -240,7 +240,7 @@ static int write_zip_entry(struct archiver_args *args,
(mode & 0111) ? ((mode) << 16) : 0;
if (S_ISREG(mode) && args->compression_level != 0 && size > 0)
method = 8;
- compressed_size = size;
+ compressed_size = (method == 0) ? size : 0;
if (S_ISREG(mode) && type == OBJ_BLOB && !args->convert &&
size > big_file_threshold) {
@@ -313,10 +313,7 @@ static int write_zip_entry(struct archiver_args *args,
copy_le16(header.compression_method, method);
copy_le16(header.mtime, zip_time);
copy_le16(header.mdate, zip_date);
- if (flags & ZIP_STREAM)
- set_zip_header_data_desc(&header, 0, 0, 0);
- else
- set_zip_header_data_desc(&header, size, compressed_size, crc);
+ set_zip_header_data_desc(&header, size, compressed_size, crc);
copy_le16(header.filename_length, pathlen);
copy_le16(header.extra_length, ZIP_EXTRA_MTIME_SIZE);
write_or_die(1, &header, ZIP_LOCAL_HEADER_SIZE);