Fix unix2syscall_darwin.go build failure

Error was

 +GOOS=darwin
 +GOARCH=amd64
 +go build -tags without_openssl
 # github.com/rfjakob/gocryptfs/internal/syscallcompat
 internal/syscallcompat/unix2syscall_darwin.go:22:32: u.Atimespec undefined (type unix.Stat_t has no field or method Atimespec)
 internal/syscallcompat/unix2syscall_darwin.go:23:32: u.Mtimespec undefined (type unix.Stat_t has no field or method Mtimespec)
 internal/syscallcompat/unix2syscall_darwin.go:24:32: u.Ctimespec undefined (type unix.Stat_t has no field or method Ctimespec)

caused by 87c872767d (diff-4913a9178621eadcdf191db17915fbcb)
This commit is contained in:
Jakob Unterwurzacher 2019-05-19 21:02:07 +02:00
parent 5888df9fbc
commit b1468a732f
2 changed files with 5 additions and 5 deletions

4
Gopkg.lock generated
View File

@ -75,14 +75,14 @@
[[projects]]
branch = "master"
digest = "1:ff0bd364800b7ec504f142151d0c2fbe68841cd1dc1a506fae10eeddcae42e60"
digest = "1:677902b7cbbfa124deba62fc56aaa9ec7ad76ab7c45d42f76c973d3e7a1ef109"
name = "golang.org/x/sys"
packages = [
"unix",
"windows",
]
pruneopts = ""
revision = "6c81ef8f67ca3f42fc9cd71dfbd5f35b0c4b5771"
revision = "61b9204099cb1bebc803c9ffb9b2d3acd9d457d9"
[solve-meta]
analyzer-name = "dep"

View File

@ -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),
}
}