This commit is contained in:
2024-08-23 17:42:45 -05:00
parent 875517a334
commit 3b904945bb

View File

@ -872,7 +872,10 @@ auto remote_server::fuse_utimens(const char *path, const remote::file_time *tv,
dest.dwHighDateTime = static_cast<DWORD>((now >> 32U) & 0xFFFFFFFF);
dest.dwLowDateTime = now & 0xFFFFFFFF;
dst_ptr = &dest;
} else if (op != UTIME_OMIT) {
return;
}
if (op != UTIME_OMIT) {
dest = utils::time::unix_time_to_filetime(src);
dst_ptr = &dest;
}