Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(363)

Side by Side Diff: src/pkg/archive/tar/stat_atim.go

Issue 56930043: code review 56930043: archive/tar: add support for FreeBSD 10 (Closed)
Patch Set: diff -r bca0032e86af https://code.google.com/p/go Created 10 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/pkg/archive/tar/stat_atimespec.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Go Authors. All rights reserved. 1 // Copyright 2012 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // +build linux dragonfly openbsd solaris 5 // +build dragonfly freebsd linux openbsd solaris
6 6
7 package tar 7 package tar
8 8
9 import ( 9 import (
10 "syscall" 10 "syscall"
11 "time" 11 "time"
12 ) 12 )
13 13
14 func statAtime(st *syscall.Stat_t) time.Time { 14 func statAtime(st *syscall.Stat_t) time.Time {
15 return time.Unix(st.Atim.Unix()) 15 return time.Unix(st.Atim.Unix())
16 } 16 }
17 17
18 func statCtime(st *syscall.Stat_t) time.Time { 18 func statCtime(st *syscall.Stat_t) time.Time {
19 return time.Unix(st.Ctim.Unix()) 19 return time.Unix(st.Ctim.Unix())
20 } 20 }
OLDNEW
« no previous file with comments | « no previous file | src/pkg/archive/tar/stat_atimespec.go » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b