diff options
author | William Leara <william.leara@dell.com> | 2023-12-11 11:47:43 -0600 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2024-01-17 12:48:27 -0800 |
commit | 190168cc1ce9c03c0a4ee296ef13c6d607ced027 (patch) | |
tree | 463030f8a9768f259dbcfff10b2e652ab5b2cd29 | |
parent | 762cf49e6368af44dface31e809e69bd4ef7808f (diff) | |
download | zlib-190168cc1ce9c03c0a4ee296ef13c6d607ced027.tar.gz zlib-190168cc1ce9c03c0a4ee296ef13c6d607ced027.tar.bz2 zlib-190168cc1ce9c03c0a4ee296ef13c6d607ced027.zip |
Correct case of MSDOS in contrib/minizip/miniunz.c.
-rw-r--r-- | contrib/minizip/miniunz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/minizip/miniunz.c b/contrib/minizip/miniunz.c index 8ada038..0c2fb0d 100644 --- a/contrib/minizip/miniunz.c +++ b/contrib/minizip/miniunz.c | |||
@@ -79,7 +79,7 @@ | |||
79 | 79 | ||
80 | /* change_file_date : change the date/time of a file | 80 | /* change_file_date : change the date/time of a file |
81 | filename : the filename of the file where date/time must be modified | 81 | filename : the filename of the file where date/time must be modified |
82 | dosdate : the new date at the MSDos format (4 bytes) | 82 | dosdate : the new date at the MSDOS format (4 bytes) |
83 | tmu_date : the SAME new date at the tm_unz format */ | 83 | tmu_date : the SAME new date at the tm_unz format */ |
84 | static void change_file_date(const char *filename, uLong dosdate, tm_unz tmu_date) { | 84 | static void change_file_date(const char *filename, uLong dosdate, tm_unz tmu_date) { |
85 | #ifdef _WIN32 | 85 | #ifdef _WIN32 |