mirror of
https://github.com/rclone/rclone.git
synced 2024-12-30 19:08:58 +01:00
2aed3bf9ab
Roll back the bazil.org/fuse update to give us some time to explore alternatives for macOS. See upstream issue: https://github.com/bazil/fuse/issues/224
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"
|
|
}
|