mirror of
https://github.com/Luzifer/worktime.git
synced 2024-12-23 14:31:16 +00:00
11 lines
161 B
Go
11 lines
161 B
Go
// +build !darwin,!linux gccgo
|
|
|
|
package sftp
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func (p sshFxpExtendedPacketStatVFS) respond(svr *Server) error {
|
|
return syscall.ENOTSUP
|
|
}
|