diff --git a/pkg/util/mount/mount_linux.go b/pkg/util/mount/mount_linux.go index 3e438870fa9..ee4d7b35f5d 100644 --- a/pkg/util/mount/mount_linux.go +++ b/pkg/util/mount/mount_linux.go @@ -231,7 +231,7 @@ func (mounter *Mounter) IsMountPointMatch(mp MountPoint, dir string) bool { // It also can not distinguish between mountpoints and symbolic links. // mkdir /tmp/a /tmp/b; mount --bind /tmp/a /tmp/b; IsLikelyNotMountPoint("/tmp/b") // will return true. When in fact /tmp/b is a mount point. If this situation -// if of interest to you, don't use this function... +// is of interest to you, don't use this function... func (mounter *Mounter) IsLikelyNotMountPoint(file string) (bool, error) { stat, err := os.Stat(file) if err != nil {