mirror of
https://github.com/octoleo/restic.git
synced 2024-11-04 12:34:13 +00: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
|
|
}
|