2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-05 10:30:49 +00:00
restic/vendor/github.com/pkg/sftp/server_statvfs_stubs.go

12 lines
184 B
Go
Raw Normal View History

// +build !darwin,!linux
2017-07-23 12:24:45 +00:00
package sftp
import (
"syscall"
)
2018-09-03 18:23:56 +00:00
func (p sshFxpExtendedPacketStatVFS) respond(svr *Server) responsePacket {
return statusFromError(p, syscall.ENOTSUP)
2017-07-23 12:24:45 +00:00
}