diff options
Diffstat (limited to 'container/dispatcher.go')
| -rw-r--r-- | container/dispatcher.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/container/dispatcher.go b/container/dispatcher.go index ae697cef..c94d9348 100644 --- a/container/dispatcher.go +++ b/container/dispatcher.go @@ -225,7 +225,7 @@ func (direct) pivotRoot(newroot, putold string) (err error) { return syscall.PivotRoot(newroot, putold) } func (direct) mount(source, target, fstype string, flags uintptr, data string) (err error) { - return syscall.Mount(source, target, fstype, flags, data) + return mount(source, target, fstype, flags, data) } func (direct) unmount(target string, flags int) (err error) { return syscall.Unmount(target, flags) |
