summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rbutil/rbutilqt/zip/unzip.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/rbutil/rbutilqt/zip/unzip.cpp b/rbutil/rbutilqt/zip/unzip.cpp
index a0a60db84b..8c4028b40c 100644
--- a/rbutil/rbutilqt/zip/unzip.cpp
+++ b/rbutil/rbutilqt/zip/unzip.cpp
@@ -128,7 +128,12 @@
128 versions from 2.1 to 2.7 may use unsupported compression methods 128 versions from 2.1 to 2.7 may use unsupported compression methods
129 versions after 2.7 may have an incompatible header format 129 versions after 2.7 may have an incompatible header format
130*/ 130*/
131#define UNZIP_VERSION 0x1B 131/* NOTE: changed to 0x1e as info-zip 3.0 uses that header type which breaks
132 * usage. Extraction seems to work fine with the value increased.
133 * No guarantees though.
134 */
135//#define UNZIP_VERSION 0x1B
136#define UNZIP_VERSION 0x1e
132//! Full compatibility granted until this version 137//! Full compatibility granted until this version
133#define UNZIP_VERSION_STRICT 0x14 138#define UNZIP_VERSION_STRICT 0x14
134 139