mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 07:30:25 +00:00
7344366ce8
The underlying issue was fixed in pkg/sftp 1.13.2
11 lines
162 B
Go
11 lines
162 B
Go
package vfs
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
func isCrossDeviceError(err error) bool {
|
|
return errors.Is(err, windows.ERROR_NOT_SAME_DEVICE)
|
|
}
|