From d67e6ea75dde6309ce4c6162a4a0429ab8d6709b Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sat, 18 Aug 2012 22:08:29 +0100 Subject: Replace mount-options with mount where appropriate. Since our minimum supported version is now 1.16 and mount was fixed in 1.13.16, it is now safe to replace mount-options + empty options with mount wherever it occurs. --- ocaml/t/guestfs_010_basic.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ocaml/t/guestfs_010_basic.ml') diff --git a/ocaml/t/guestfs_010_basic.ml b/ocaml/t/guestfs_010_basic.ml index bb96737b..83243515 100644 --- a/ocaml/t/guestfs_010_basic.ml +++ b/ocaml/t/guestfs_010_basic.ml @@ -42,7 +42,7 @@ let () = failwith "Guestfs.lvs returned incorrect result"; g#mkfs "ext2" "/dev/VG/LV1"; - g#mount_options "" "/dev/VG/LV1" "/"; + g#mount "/dev/VG/LV1" "/"; g#mkdir "/p"; g#touch "/q"; -- cgit