os: Fix Solaris stat functions.
authorIan Lance Taylor <ian@gcc.gnu.org>
Thu, 9 Feb 2012 18:07:43 +0000 (18:07 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Thu, 9 Feb 2012 18:07:43 +0000 (18:07 +0000)
From Rainer Orth.

From-SVN: r184065

libgo/go/os/stat_solaris.go

index 2321da6e50d85b08415736d3c660390c4356e8bd..93b698c3c4c5288a46c13174bb91fb7ff458a584 100644 (file)
@@ -9,18 +9,18 @@ import (
        "time"
 )
 
-func sameFile(fs1, fs2 *FileStat) bool {
-       sys1 := fs1.Sys.(*syscall.Stat_t)
-       sys2 := fs2.Sys.(*syscall.Stat_t)
-       return sys1.Dev == sys2.Dev && sys1.Ino == sys2.Ino
+func sameFile(sys1, sys2 interface{}) bool {
+       stat1 := sys1.(*syscall.Stat_t)
+       stat2 := sys2.(*syscall.Stat_t)
+       return stat1.Dev == stat2.Dev && stat1.Ino == stat2.Ino
 }
 
 func fileInfoFromStat(st *syscall.Stat_t, name string) FileInfo {
-       fs := &FileStat{
+       fs := &fileStat{
                name:    basename(name),
                size:    int64(st.Size),
                modTime: timestrucToTime(st.Mtime),
-               Sys:     st,
+               sys:     st,
        }
        fs.mode = FileMode(st.Mode & 0777)
        switch st.Mode & syscall.S_IFMT {
@@ -52,5 +52,5 @@ func timestrucToTime(ts syscall.Timestruc) time.Time {
 
 // For testing.
 func atime(fi FileInfo) time.Time {
-       return timestrucToTime(fi.(*FileStat).Sys.(*syscall.Stat_t).Atime)
+       return timestrucToTime(fi.(*fileStat).Sys().(*syscall.Stat_t).Atime)
 }