tzip-get-name.patch - parlay - yet another gentoo overlay
HTML git clone https://git.parazyd.org/parlay
DIR Log
DIR Files
DIR Refs
DIR README
---
tzip-get-name.patch (559B)
---
1 diff --git a/zip/zip.c b/zip/zip.c
2 index 5c2b291..f6b4ab9 100644
3 --- a/zip/zip.c
4 +++ b/zip/zip.c
5 @@ -106,7 +106,7 @@ static bool zip_parse_entry(ar_archive *ar, off64_t offset)
6 zip_clear_uncompress(&zip->uncomp);
7
8 if (entry.datasize == 0 && ((entry.version >> 8) == 0 || (entry.version >> 8) == 3) && (entry.attr_external & 0x40000010)) {
9 - log("Skipping directory entry \"%s\"", zip_get_name(ar));
10 + /* log("Skipping directory entry \"%s\"", zip_get_name(ar)); */
11 return zip_parse_entry(ar, ar->entry_offset_next);
12 }
13