From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 09/13] installer: Correctly pass mount flags Date: Fri, 05 Apr 2024 12:59:38 +0000 Message-ID: <20240405125942.1803058-9-michael.tremer@ipfire.org> In-Reply-To: <20240405125942.1803058-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6815051460774725057==" List-Id: --===============6815051460774725057== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- src/installer/hw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/installer/hw.c b/src/installer/hw.c index 77c2d546e..809a448a0 100644 --- a/src/installer/hw.c +++ b/src/installer/hw.c @@ -1010,7 +1010,7 @@ static int hw_mount_btrfs_subvolumes(const char* source= ) { fprintf(flog, "Mounting subvolume %s to %s\n", subvolume->name, subvolume-= >mount_path); =20 // Try to mount the subvolume. - r =3D mount(source, path, "btrfs", NULL, options); + r =3D mount(source, path, "btrfs", 0, options); if (r) return r; } --=20 2.39.2 --===============6815051460774725057==--