diff options
author | Jakob Unterwurzacher | 2021-08-11 20:21:32 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2021-08-11 20:23:35 +0200 |
commit | 2d386fc92e88be5384d1654db5d6e23ef4682354 (patch) | |
tree | 32ad6c71cad91bc64f162d81ce7e64903b6e6b4f /internal/fusefrontend/root_node.go | |
parent | 0c16616117e9866cc49adc85738e3c9e3adf413a (diff) |
syscallcompat: move quirks logic here & fix darwin
We need to look at f_fstypename acc. to
https://stackoverflow.com/a/52299141/1380267 :
> As filesystem type numbers are now assigned at runtime in
> recent versions of MacOS, you must use f_fstypename to
> determine the type.
https://github.com/rfjakob/gocryptfs/issues/585
Diffstat (limited to 'internal/fusefrontend/root_node.go')
-rw-r--r-- | internal/fusefrontend/root_node.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/fusefrontend/root_node.go b/internal/fusefrontend/root_node.go index 9905d66..a2de953 100644 --- a/internal/fusefrontend/root_node.go +++ b/internal/fusefrontend/root_node.go @@ -79,7 +79,7 @@ func NewRootNode(args Args, c *contentenc.ContentEnc, n *nametransform.NameTrans contentEnc: c, inoMap: inomap.New(), dirCache: dirCache{ivLen: ivLen}, - quirks: detectQuirks(args.Cipherdir), + quirks: syscallcompat.DetectQuirks(args.Cipherdir), } return rn } |