sftpgo-mirror/vfs/sys_unix.go
Nicola Murino 7344366ce8
sftpd: remove workarounds for directory listing
The underlying issue was fixed in pkg/sftp 1.13.2
2021-07-11 16:26:40 +02:00

13 lines
160 B
Go

// +build !windows
package vfs
import (
"errors"
"golang.org/x/sys/unix"
)
func isCrossDeviceError(err error) bool {
return errors.Is(err, unix.EXDEV)
}