Codebase list golang-github-pkg-sftp / lintian-fixes/main server_statvfs_plan9.go
lintian-fixes/main

Tree @lintian-fixes/main (Download .tar.gz)

server_statvfs_plan9.go @lintian-fixes/mainraw · history · blame

package sftp

import (
	"syscall"
)

func (p *sshFxpExtendedPacketStatVFS) respond(svr *Server) responsePacket {
	return statusFromError(p.ID, syscall.EPLAN9)
}

func getStatVFSForPath(name string) (*StatVFS, error) {
	return nil, syscall.EPLAN9
}