keywords: time keyword 9 postition decimal

Matching with the FreeBSD standard format

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2016-06-27 13:24:03 -04:00
parent fca9d4b5b6
commit 6adcc98b22
2 changed files with 5 additions and 5 deletions

View file

@ -209,9 +209,9 @@ var (
timeKeywordFunc = func(path string, info os.FileInfo) (string, error) {
t := info.ModTime().UnixNano()
if t == 0 {
return "time=0.0", nil
return "time=0.000000000", nil
}
return fmt.Sprintf("time=%d.%d", (t / 1e9), (t % (t / 1e9))), nil
return fmt.Sprintf("time=%d.%9.9d", (t / 1e9), (t % (t / 1e9))), nil
}
linkKeywordFunc = func(path string, info os.FileInfo) (string, error) {
if info.Mode()&os.ModeSymlink != 0 {