Skip to content

Commit

Permalink
references #86
Browse files Browse the repository at this point in the history
  • Loading branch information
infeo committed Nov 21, 2023
1 parent e779511 commit e53e100
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ public Mount mount() throws MountFailedException {
var builder = Fuse.builder();
var libPath = WinfspUtil.getWinFspInstallDir() + "bin\\" + (OS_ARCH.contains("aarch64") ? "winfsp-a64.dll" : "winfsp-x64.dll");
builder.setLibraryPath(libPath);
var fuseAdapter = ReadWriteAdapter.create(builder.errno(), vfsRoot, FuseNioAdapter.DEFAULT_MAX_FILENAMELENGTH, FileNameTranscoder.transcoder(), true);
//xattr disabled due to https://github.com/cryptomator/fuse-nio-adapter/issues/86
var fuseAdapter = ReadWriteAdapter.create(builder.errno(), vfsRoot, FuseNioAdapter.DEFAULT_MAX_FILENAMELENGTH, FileNameTranscoder.transcoder(), false);
try {
var fuse = builder.build(fuseAdapter);
fuse.mount("fuse-nio-adapter", mountPoint, combinedMountFlags().toArray(String[]::new));
Expand Down

0 comments on commit e53e100

Please sign in to comment.