Use unix.Statfs instead of syscall.Statfs

This commit is contained in:
Mateusz Kwiatkowski 2021-01-16 21:27:14 +01:00
parent d12d56e47e
commit fd93474d17
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
package graphdriver
import (
"syscall"
"golang.org/x/sys/unix"
)
var (
@ -13,8 +13,8 @@ var (
// Mounted checks if the given path is mounted as the fs type
func Mounted(fsType FsMagic, mountPath string) (bool, error) {
var buf syscall.Statfs_t
if err := syscall.Statfs(mountPath, &buf); err != nil {
var buf unix.Statfs_t
if err := unix.Statfs(mountPath, &buf); err != nil {
return false, err
}
return FsMagic(buf.Type) == fsType, nil