diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/device_scan.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/device_scan.rs b/src/device_scan.rs index a6b62290..0361739f 100644 --- a/src/device_scan.rs +++ b/src/device_scan.rs @@ -19,6 +19,7 @@ use log::debug; fn read_super_silent(path: impl AsRef<Path>, mut opts: bch_opts) -> anyhow::Result<bch_sb_handle> { opt_set!(opts, noexcl, 1); + opt_set!(opts, no_version_check, 1); bch_bindgen::sb_io::read_super_silent(path.as_ref(), opts) } |