2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-02 09:00:50 +00:00
restic/vendor/github.com/pkg/sftp/server_statvfs_stubs.go
2018-09-08 21:17:22 +02:00

12 lines
184 B
Go

// +build !darwin,!linux
package sftp
import (
"syscall"
)
func (p sshFxpExtendedPacketStatVFS) respond(svr *Server) responsePacket {
return statusFromError(p, syscall.ENOTSUP)
}