summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/filesystems/gocryptfs/fix-unix2syscall_darwin.go-build-failure.patch
blob: 1adbc2c4d232bd3d6763511ed56a59f46cc51ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/internal/syscallcompat/unix2syscall_darwin.go
+++ b/internal/syscallcompat/unix2syscall_darwin.go
@@ -19,8 +19,8 @@ func Unix2syscall(u unix.Stat_t) syscall.Stat_t {
 		Size:      u.Size,
 		Blksize:   u.Blksize,
 		Blocks:    u.Blocks,
-		Atimespec: syscall.Timespec(u.Atimespec),
-		Mtimespec: syscall.Timespec(u.Mtimespec),
-		Ctimespec: syscall.Timespec(u.Ctimespec),
+		Atimespec: syscall.Timespec(u.Atim),
+		Mtimespec: syscall.Timespec(u.Mtim),
+		Ctimespec: syscall.Timespec(u.Ctim),
 	}
 }