setup.c:verify_non_filename(): don't die unnecessarily while disambiguating
[gitweb.git] / archive-zip.c
index 1eaf262b7410e08f529ac48b9d56a131ba2a3ab3..3cbf6bb8ac4045803140ca5019126015e817155e 100644 (file)
@@ -195,7 +195,7 @@ static int write_zip_entry(const unsigned char *sha1,
                if (S_ISREG(mode) && zlib_compression_level != 0)
                        method = 8;
                result = 0;
-               buffer = read_sha1_file(sha1, &type, &size);
+               buffer = convert_sha1_file(path, sha1, mode, &type, &size);
                if (!buffer)
                        die("cannot read %s", sha1_to_hex(sha1));
                crc = crc32(crc, buffer, size);