Remove POSIX lock handling

This commit is contained in:
Ben Johnson
2020-11-05 13:41:32 -07:00
parent e52d3be78d
commit d68db48acc
4 changed files with 22 additions and 25 deletions

View File

@@ -78,7 +78,7 @@ func (m *Main) Run(args []string) (err error) {
}
// Mount FUSE filesystem.
conn, err := fuse.Mount(m.Path, fuse.LockingPOSIX())
conn, err := fuse.Mount(m.Path)
if err != nil {
return err
}