mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 17:44:57 +01:00
f7af730b50
This is using godep to manage the vendor directory.
18 lines
167 B
Go
18 lines
167 B
Go
package fuse
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
const (
|
|
ENOATTR = Errno(syscall.ENOATTR)
|
|
)
|
|
|
|
const (
|
|
errNoXattr = ENOATTR
|
|
)
|
|
|
|
func init() {
|
|
errnoNames[errNoXattr] = "ENOATTR"
|
|
}
|