diff options
| author | Birunthan Mohanathas <birunthan@mohanathas.com> | 2012-06-06 20:30:39 +0300 |
|---|---|---|
| committer | Mark Adler <madler@alumni.caltech.edu> | 2012-07-08 16:34:08 -0700 |
| commit | f51cc49c94e451a23b3848233512603500264d15 (patch) | |
| tree | ffbdfa7ae127a76030ee944c8276ad18a4f7b2e6 | |
| parent | d0c73312589ce8735425b526137b3627144a9056 (diff) | |
| download | zlib-f51cc49c94e451a23b3848233512603500264d15.tar.gz zlib-f51cc49c94e451a23b3848233512603500264d15.tar.bz2 zlib-f51cc49c94e451a23b3848233512603500264d15.zip | |
Fix comment typos in unzip.h and unzip.c.
| -rw-r--r-- | contrib/minizip/unzip.c | 10 | ||||
| -rw-r--r-- | contrib/minizip/unzip.h | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/contrib/minizip/unzip.c b/contrib/minizip/unzip.c index affad4b..26b2e0f 100644 --- a/contrib/minizip/unzip.c +++ b/contrib/minizip/unzip.c | |||
| @@ -801,9 +801,9 @@ extern unzFile ZEXPORT unzOpen64 (const void *path) | |||
| 801 | } | 801 | } |
| 802 | 802 | ||
| 803 | /* | 803 | /* |
| 804 | Close a ZipFile opened with unzipOpen. | 804 | Close a ZipFile opened with unzOpen. |
| 805 | If there is files inside the .Zip opened with unzipOpenCurrentFile (see later), | 805 | If there is files inside the .Zip opened with unzOpenCurrentFile (see later), |
| 806 | these files MUST be closed with unzipCloseCurrentFile before call unzipClose. | 806 | these files MUST be closed with unzCloseCurrentFile before call unzClose. |
| 807 | return UNZ_OK if there is no problem. */ | 807 | return UNZ_OK if there is no problem. */ |
| 808 | extern int ZEXPORT unzClose (unzFile file) | 808 | extern int ZEXPORT unzClose (unzFile file) |
| 809 | { | 809 | { |
| @@ -1223,7 +1223,7 @@ extern int ZEXPORT unzGoToNextFile (unzFile file) | |||
| 1223 | 1223 | ||
| 1224 | /* | 1224 | /* |
| 1225 | Try locate the file szFileName in the zipfile. | 1225 | Try locate the file szFileName in the zipfile. |
| 1226 | For the iCaseSensitivity signification, see unzipStringFileNameCompare | 1226 | For the iCaseSensitivity signification, see unzStringFileNameCompare |
| 1227 | 1227 | ||
| 1228 | return value : | 1228 | return value : |
| 1229 | UNZ_OK if the file is found. It becomes the current file. | 1229 | UNZ_OK if the file is found. It becomes the current file. |
| @@ -1998,7 +1998,7 @@ extern int ZEXPORT unzGetLocalExtrafield (unzFile file, voidp buf, unsigned len) | |||
| 1998 | } | 1998 | } |
| 1999 | 1999 | ||
| 2000 | /* | 2000 | /* |
| 2001 | Close the file in zip opened with unzipOpenCurrentFile | 2001 | Close the file in zip opened with unzOpenCurrentFile |
| 2002 | Return UNZ_CRCERROR if all the file was read but the CRC is not good | 2002 | Return UNZ_CRCERROR if all the file was read but the CRC is not good |
| 2003 | */ | 2003 | */ |
| 2004 | extern int ZEXPORT unzCloseCurrentFile (unzFile file) | 2004 | extern int ZEXPORT unzCloseCurrentFile (unzFile file) |
diff --git a/contrib/minizip/unzip.h b/contrib/minizip/unzip.h index 3183968..2104e39 100644 --- a/contrib/minizip/unzip.h +++ b/contrib/minizip/unzip.h | |||
| @@ -197,9 +197,9 @@ extern unzFile ZEXPORT unzOpen2_64 OF((const void *path, | |||
| 197 | 197 | ||
| 198 | extern int ZEXPORT unzClose OF((unzFile file)); | 198 | extern int ZEXPORT unzClose OF((unzFile file)); |
| 199 | /* | 199 | /* |
| 200 | Close a ZipFile opened with unzipOpen. | 200 | Close a ZipFile opened with unzOpen. |
| 201 | If there is files inside the .Zip opened with unzOpenCurrentFile (see later), | 201 | If there is files inside the .Zip opened with unzOpenCurrentFile (see later), |
| 202 | these files MUST be closed with unzipCloseCurrentFile before call unzipClose. | 202 | these files MUST be closed with unzCloseCurrentFile before call unzClose. |
| 203 | return UNZ_OK if there is no problem. */ | 203 | return UNZ_OK if there is no problem. */ |
| 204 | 204 | ||
| 205 | extern int ZEXPORT unzGetGlobalInfo OF((unzFile file, | 205 | extern int ZEXPORT unzGetGlobalInfo OF((unzFile file, |
