summaryrefslogtreecommitdiff
path: root/zip/ZipArchive/FileInfo.h
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@redhat.com>2023-12-17 21:23:58 +0100
committerTomas Bzatek <tbzatek@redhat.com>2023-12-17 21:23:58 +0100
commit02d6107c97b48888362e7c6a70dcac323c89d741 (patch)
tree5069a77adaf73f7249ac79b6c49a47168a647ef8 /zip/ZipArchive/FileInfo.h
parent4e17c2527b106f1b493a3ac77c89858d14f834e2 (diff)
downloadtuxcmd-modules-02d6107c97b48888362e7c6a70dcac323c89d741.tar.xz
ZipArchive: Update to the 4.6.9 release
Diffstat (limited to 'zip/ZipArchive/FileInfo.h')
-rw-r--r--zip/ZipArchive/FileInfo.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/zip/ZipArchive/FileInfo.h b/zip/ZipArchive/FileInfo.h
index 7093d82..0ae405e 100644
--- a/zip/ZipArchive/FileInfo.h
+++ b/zip/ZipArchive/FileInfo.h
@@ -1,6 +1,6 @@
////////////////////////////////////////////////////////////////////////////////
-// This source file is part of the ZipArchive library source distribution and
-// is Copyrighted 2000 - 2007 by Artpol Software - Tadeusz Dracz
+// This source file is part of the ZipArchive Library Open Source distribution
+// and is Copyrighted 2000 - 2022 by Artpol Software - Tadeusz Dracz
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
@@ -9,7 +9,7 @@
//
// For the licensing details refer to the License.txt file.
//
-// Web Site: http://www.artpol-software.com
+// Web Site: https://www.artpol-software.com
////////////////////////////////////////////////////////////////////////////////
/**
@@ -44,13 +44,13 @@ namespace ZipArchiveLib
{
m_uSize = 0;
m_uAttributes = 0;
- m_uCreateTime = m_uModTime = m_uAccessTime = 0;
+ m_tCreationTime = m_tModificationTime = m_tLastAccessTime = (time_t)0;
}
ZIP_FILE_USIZE m_uSize; ///< The file size.
DWORD m_uAttributes; ///< The file system attributes.
- time_t m_uCreateTime; ///< Creation time.
- time_t m_uModTime; ///< Last modification time.
- time_t m_uAccessTime; ///< Last access time.
+ time_t m_tCreationTime; ///< The file creation time.
+ time_t m_tModificationTime; ///< The file modification time.
+ time_t m_tLastAccessTime; ///< The file last access time.
/**
Returns the value indicating whether the current CFileInfo