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.
 
 
 
 
 
 

24 lines
1.3 KiB

Index: pkg/mod/github.com/docker/docker@v0.7.3-0.20190212235812-0111ee70874a/pkg/mount/mountinfo_freebsd.go
--- pkg/mod/github.com/docker/docker@v0.7.3-0.20190212235812-0111ee70874a/pkg/mount/mountinfo_freebsd.go.orig 2019-08-04 14:36:16.000000000 +0200
+++ pkg/mod/github.com/docker/docker@v0.7.3-0.20190212235812-0111ee70874a/pkg/mount/mountinfo_freebsd.go 2019-08-04 14:45:20.307020000 +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
}
Index: pkg/mod/github.com/docker/docker@v0.7.3-0.20190212235812-0111ee70874a/pkg/system/mknod.go
--- pkg/mod/github.com/docker/docker@v0.7.3-0.20190212235812-0111ee70874a/pkg/system/mknod.go.orig 2019-08-04 14:36:16.000000000 +0200
+++ pkg/mod/github.com/docker/docker@v0.7.3-0.20190212235812-0111ee70874a/pkg/system/mknod.go 2019-08-04 14:46:32.907581000 +0200
@@ -9,7 +9,7 @@
// Mknod creates a filesystem node (file, device special file or named pipe) named path
// with attributes specified by mode and dev.
func Mknod(path string, mode uint32, dev int) error {
- return unix.Mknod(path, mode, dev)
+ return unix.Mknod(path, mode, uint64(dev))
}
// Mkdev is used to build the value of linux devices (in /dev/) which specifies major