We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0100124 commit eea2330Copy full SHA for eea2330
1 file changed
src/lib.rs
@@ -68,6 +68,9 @@ fn make_mount_options(options: &[&OsStr]) -> io::Result<fuser::Config> {
68
"non-utf8 mount option not supported",
69
)
70
})?;
71
+ if opt_str == "-o" {
72
+ continue;
73
+ }
74
cfg.mount_options
75
.push(MountOption::CUSTOM(opt_str.to_owned()));
76
}
0 commit comments