From 52ea295038d8b9d419e18a1dd90adc738d033838 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 20 Feb 2024 12:51:21 +0100 Subject: [PATCH] btrfs-progs: use wrapper btrfs_open_dir_fd() in btrfs_open_mnt_fd() The arguments now match the wrapper, use it. Signed-off-by: David Sterba --- common/open-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/open-utils.c b/common/open-utils.c index 406031e0..55e5d37a 100644 --- a/common/open-utils.c +++ b/common/open-utils.c @@ -254,7 +254,7 @@ int btrfs_open_mnt_fd(const char *path) error("'%s' is not a mounted btrfs device", path); return -EINVAL; } - ret = btrfs_open_fd2(mp, true, true); + ret = btrfs_open_dir_fd(mp); } else { ret = btrfs_open_dir_fd(path); }