summaryrefslogtreecommitdiff
path: root/src/bcachefs.rs
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2024-10-12 14:02:51 -0400
committerKent Overstreet <kent.overstreet@linux.dev>2024-10-12 17:20:56 -0400
commitb1e6d1ced265b3b19cf2648c506013bdf2b75a13 (patch)
tree16347b0c825f244abd49e3cb90220f6b53383e5c /src/bcachefs.rs
parent3666da87f249b23b2c1f506e0d4157fd56c543e2 (diff)
cmd_mount: Change error message on -EBUSY to match util-linux
This causes xfstests generic/741 to pass Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'src/bcachefs.rs')
-rw-r--r--src/bcachefs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bcachefs.rs b/src/bcachefs.rs
index de44bf8e..417cb01e 100644
--- a/src/bcachefs.rs
+++ b/src/bcachefs.rs
@@ -109,7 +109,7 @@ fn main() -> ExitCode {
ExitCode::SUCCESS
}
"list" => commands::list(args[1..].to_vec()).report(),
- "mount" => commands::mount(args, symlink_cmd).report(),
+ "mount" => commands::mount(args, symlink_cmd),
"subvolume" => commands::subvolume(args[1..].to_vec()).report(),
_ => {
let r = handle_c_command(args, symlink_cmd);