You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During certain operation, macOS use some helper that send request to the mountpoint with `crtime` set to `0xffff83da4f80`.
That value correspond to `-2_082_844_800u64` which is the difference between the date 1904-01-01 and 1970-01-01 because macOS epoch start at 1904 and not 1970.
<macfuse/macfuse#1042>
Fix#217
Copy file name to clipboardexpand all lines: src/ll/request.rs
+4
Original file line number
Diff line number
Diff line change
@@ -427,6 +427,10 @@ mod op {
427
427
#[cfg(target_os = "macos")]
428
428
matchself.arg.valid&FATTR_CRTIME{
429
429
0 => None,
430
+
// During certain operation, macOS use some helper that send request to the mountpoint with `crtime` set to 0xffffffff83da4f80.
431
+
// That value correspond to `-2_082_844_800u64` which is the difference between the date 1904-01-01 and 1970-01-01 because macOS epoch start at 1904 and not 1970.
0 commit comments