mirror of
https://github.com/rclone/rclone.git
synced 2024-12-01 13:04:21 +08:00
12 lines
161 B
Go
12 lines
161 B
Go
// +build !darwin,!linux gccgo
|
|
|
|
package sftp
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func (p sshFxpExtendedPacketStatVFS) respond(svr *Server) error {
|
|
return syscall.ENOTSUP
|
|
}
|