mirror of https://github.com/restic/restic.git
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
|
||
|
}
|