diff options
author | Xavier Roche <roche@httrack.com> | 2024-01-27 14:12:35 +0100 |
---|---|---|
committer | Xavier Roche <roche@httrack.com> | 2024-01-27 14:22:41 +0100 |
commit | b625cfe82ab34374f3cad7ef3941a6c001fc4876 (patch) | |
tree | 620b602db9871b05c38ccf25603de638e40d11e0 /src/minizip/unzip.c | |
parent | 940bc759c9a26f70e75dc2af7ddbdeb6d72a3106 (diff) |
Upgraded to minizip 1.1 from zlib 1.3.1
closes:#272
Diffstat (limited to 'src/minizip/unzip.c')
-rw-r--r-- | src/minizip/unzip.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/minizip/unzip.c b/src/minizip/unzip.c index ed763f8..ea05b7d 100644 --- a/src/minizip/unzip.c +++ b/src/minizip/unzip.c @@ -117,7 +117,7 @@ const char unz_copyright[] = " unzip 1.01 Copyright 1998-2004 Gilles Vollant - http://www.winimage.com/zLibDll"; -/* unz_file_info_interntal contain internal info about a file in zipfile*/ +/* unz_file_info64_internal contain internal info about a file in zipfile*/ typedef struct unz_file_info64_internal_s { ZPOS64_T offset_curfile;/* relative offset of local header 8 bytes */ @@ -450,7 +450,7 @@ local ZPOS64_T unz64local_SearchCentralDir64(const zlib_filefunc64_32_def* pzlib if (unz64local_getLong(pzlib_filefunc_def,filestream,&uL)!=UNZ_OK) return CENTRALDIRINVALID; - /* number of the disk with the start of the zip64 end of central directory */ + /* number of the disk with the start of the zip64 end of central directory */ if (unz64local_getLong(pzlib_filefunc_def,filestream,&uL)!=UNZ_OK) return CENTRALDIRINVALID; if (uL != 0) @@ -497,9 +497,9 @@ local unzFile unzOpenInternal(const void *path, ZPOS64_T central_pos; uLong uL; - uLong number_disk; /* number of the current dist, used for + uLong number_disk; /* number of the current disk, used for spanning ZIP, unsupported, always 0*/ - uLong number_disk_with_CD; /* number the the disk with central dir, used + uLong number_disk_with_CD; /* number the disk with central dir, used for spanning ZIP, unsupported, always 0*/ ZPOS64_T number_entry_CD; /* total number of entries in the central dir |