Merge pull request #22550 from taosdata/fix/TD-25010-9

fix(file/stat): fix atime
This commit is contained in:
wade zhang 2023-08-24 15:05:45 +08:00 committed by GitHub
commit 93d012b234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ int32_t taosStatFile(const char *path, int64_t *size, int32_t *mtime, int32_t *a
} }
if (atime != NULL) { if (atime != NULL) {
*atime = fileStat.st_mtime; *atime = fileStat.st_atime;
} }
return 0; return 0;