diff options
author | W. Trevor King <wking@tremily.us> | 2018-07-06 09:37:35 -0700 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-07-07 20:35:00 +0000 |
commit | 0660108e3e06c9d935f27561eea78d892ba7b3e3 (patch) | |
tree | 49c67f5bc41e8863cc7dc65fee95f7a251de9f3f /pkg/ctime/ctime_linux.go | |
parent | 32dd5206064f11edd2f4d103a2bf2c0131b3f179 (diff) | |
download | podman-0660108e3e06c9d935f27561eea78d892ba7b3e3.tar.gz podman-0660108e3e06c9d935f27561eea78d892ba7b3e3.tar.bz2 podman-0660108e3e06c9d935f27561eea78d892ba7b3e3.zip |
ctime: Drop 32-/64-bit distinction on Linux
We added the explicit int64 casts for 32-bit builds in 35e1ad78 (Make
libpod build on 32-bit systems, 2018-02-12, #324), but the explicit
casts work fine on 64-bit systems too.
Signed-off-by: W. Trevor King <wking@tremily.us>
Closes: #1058
Approved by: mheon
Diffstat (limited to 'pkg/ctime/ctime_linux.go')
-rw-r--r-- | pkg/ctime/ctime_linux.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pkg/ctime/ctime_linux.go b/pkg/ctime/ctime_linux.go new file mode 100644 index 000000000..e83269d49 --- /dev/null +++ b/pkg/ctime/ctime_linux.go @@ -0,0 +1,14 @@ +// +build linux + +package ctime + +import ( + "os" + "syscall" + "time" +) + +func created(fi os.FileInfo) time.Time { + st := fi.Sys().(*syscall.Stat_t) + return time.Unix(int64(st.Ctim.Sec), int64(st.Ctim.Nsec)) +} |