2
2
mirror of https://github.com/octoleo/restic.git synced 2025-01-30 18:38: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 14:24:45 +02:00
package sftp
import (
"syscall"
)
2018-09-03 20:23:56 +02:00
func (p sshFxpExtendedPacketStatVFS) respond(svr *Server) responsePacket {
return statusFromError(p, syscall.ENOTSUP)
2017-07-23 14:24:45 +02:00
}