mirror of
https://github.com/trapexit/mergerfs.git
synced 2025-03-14 01:45:12 +08:00
Merge pull request #315 from trapexit/futimes
fix futimes version of utimes wrapper
This commit is contained in:
commit
fa3218cb72
@ -25,8 +25,8 @@ namespace fs
|
||||
{
|
||||
struct timeval times[2];
|
||||
|
||||
TIMESPEC_TO_TIMEVAL(×[0],&st.st_atimespec);
|
||||
TIMESPEC_TO_TIMEVAL(×[1],&st.st_mtimespec);
|
||||
TIMESPEC_TO_TIMEVAL(×[0],&st.st_atim);
|
||||
TIMESPEC_TO_TIMEVAL(×[1],&st.st_mtim);
|
||||
|
||||
return ::futimes(fd,times);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user