You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

48 lines
1.7 KiB

Index: src/github.com/fsouza/go-dockerclient/internal/archive/archive_unix.go
--- src/github.com/fsouza/go-dockerclient/internal/archive/archive_unix.go.orig 2018-08-14 18:32:26.000000000 +0200
+++ src/github.com/fsouza/go-dockerclient/internal/archive/archive_unix.go 2018-08-14 18:35:57.109825000 +0200
@@ -62,7 +62,7 @@
s, ok := stat.(*syscall.Stat_t)
if ok {
- inode = s.Ino
+ inode = uint64(s.Ino)
}
return
Index: src/github.com/docker/docker/pkg/archive/archive_unix.go
--- src/github.com/docker/docker/pkg/archive/archive_unix.go.orig 2018-08-14 18:32:26.000000000 +0200
+++ src/github.com/docker/docker/pkg/archive/archive_unix.go 2018-08-14 18:35:57.109825000 +0200
@@ -62,7 +62,7 @@
s, ok := stat.(*syscall.Stat_t)
if ok {
- inode = s.Ino
+ inode = uint64(s.Ino)
}
return
Index: src/github.com/docker/docker/pkg/archive/changes_unix.go
--- src/github.com/docker/docker/pkg/archive/changes_unix.go.orig 2018-08-14 18:32:26.000000000 +0200
+++ src/github.com/docker/docker/pkg/archive/changes_unix.go 2018-08-14 18:35:57.110015000 +0200
@@ -29,7 +29,7 @@
}
func getIno(fi os.FileInfo) uint64 {
- return fi.Sys().(*syscall.Stat_t).Ino
+ return uint64(fi.Sys().(*syscall.Stat_t).Ino)
}
func hasHardlinks(fi os.FileInfo) bool {
Index: src/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go
--- src/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go.orig 2018-08-14 18:32:26.000000000 +0200
+++ src/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go 2018-08-14 18:35:57.110191000 +0200
@@ -37,7 +37,7 @@
if filter != nil {
// filter out entries we're not interested in
- skip, stop = filter(p)
+ skip, stop = filter(&mountinfo)
if skip {
continue
}