blob: e71a27d37b7c4a965215d790eb4e7a03f2a0e261 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
}
|