Index: src/OFFileManager.h ================================================================== --- src/OFFileManager.h +++ src/OFFileManager.h @@ -130,18 +130,18 @@ * @return The last access time of the specified item */ - (OFDate *)accessTimeOfItemAtPath: (OFString *)path; /*! - * @brief Returns the last modification time of the specified item. + * @brief Returns the last modification date of the specified item. * - * @param path The path to the item whose last modification time should be + * @param path The path to the item whose last modification date should be * returned * - * @return The last modification time of the specified item + * @return The last modification date of the specified item */ -- (OFDate *)modificationTimeOfItemAtPath: (OFString *)path; +- (OFDate *)modificationDateOfItemAtPath: (OFString *)path; /*! * @brief Returns the last status change time of the specified item. * * @param path The path to the item whose last status change time should be Index: src/OFFileManager.m ================================================================== --- src/OFFileManager.m +++ src/OFFileManager.m @@ -688,11 +688,11 @@ /* FIXME: We could be more precise on some OSes */ return [OFDate dateWithTimeIntervalSince1970: s.st_atime]; } -- (OFDate *)modificationTimeOfItemAtPath: (OFString *)path +- (OFDate *)modificationDateOfItemAtPath: (OFString *)path { of_stat_t s; if (path == nil) @throw [OFInvalidArgumentException exception]; Index: utils/ofzip/TarArchive.m ================================================================== --- utils/ofzip/TarArchive.m +++ utils/ofzip/TarArchive.m @@ -454,11 +454,11 @@ [entry setMode: [fileManager permissionsOfItemAtPath: fileName]]; #endif [entry setSize: [fileManager sizeOfFileAtPath: fileName]]; [entry setModificationDate: - [fileManager modificationTimeOfItemAtPath: fileName]]; + [fileManager modificationDateOfItemAtPath: fileName]]; #ifdef OF_FILE_MANAGER_SUPPORTS_OWNER OFString *owner, *group; [fileManager getOwner: &owner group: &group