Sign in
chromium
/
external
/
github.com
/
pkg
/
sftp
/
refs/heads/bug/extended-packets-no-path-convert
/
.
/
ls_stub.go
blob: 6dec39378578c8f16c0ebdb0b3adb4e36bf9c2dc [
file
] [
log
] [
blame
] [
edit
]
// +build windows android
package sftp
import (
"os"
)
func lsLinksUIDGID(fi os.FileInfo) (numLinks uint64, uid, gid string) {
return 1, "0", "0"
}