telegraf/plugins/inputs/postfix/stat_ctimespec.go

17 lines
230 B
Go

// +build darwin freebsd
package postfix
import (
"syscall"
"time"
)
func statCTime(sys interface{}) time.Time {
stat, ok := sys.(*syscall.Stat_t)
if !ok {
return time.Time{}
}
return time.Unix(stat.Ctimespec.Unix())
}