mount: fix mount flags not working
This was broken in the recent refactor. See: https://forum.rclone.org/t/issue-with-allow-other-in-beta/18133
This commit is contained in:
parent
4afea1ebaf
commit
b2ae94de5b
1 changed files with 1 additions and 1 deletions
|
@ -436,7 +436,7 @@ func ClipBlocks(b *uint64) {
|
||||||
//
|
//
|
||||||
// If noModTime is set then it
|
// If noModTime is set then it
|
||||||
func Mount(VFS *vfs.VFS, mountpoint string, mount MountFn, opt *Options) error {
|
func Mount(VFS *vfs.VFS, mountpoint string, mount MountFn, opt *Options) error {
|
||||||
if opt != nil {
|
if opt == nil {
|
||||||
opt = &DefaultOpt
|
opt = &DefaultOpt
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue