Misprint in createdImpl fixed

This commit is contained in:
Sergey Kholodilov
2008-08-05 15:08:39 +00:00
parent 9998706b7e
commit c186d5da98

View File

@@ -205,7 +205,7 @@ Timestamp FileImpl::createdImpl() const
struct stat st;
if (stat(_path.c_str(), &st) == 0)
return Timestamp::fromEpochTime(st.st_mtime);
return Timestamp::fromEpochTime(st.st_birthtime);
else
handleLastErrorImpl(_path);
return 0;