diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-05-03 14:30:49 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-05-03 14:32:24 +0100 |
commit | 93734c78d8f802fbd80418e6ddb333b21f060fa9 (patch) | |
tree | f6dd38bb95e8440435c8d6e44d6e6b8cae33b4d0 | |
parent | e60556d92725289a26ccb406c9c94be32b3251c8 (diff) | |
download | libguestfs-93734c78d8f802fbd80418e6ddb333b21f060fa9.tar.gz libguestfs-93734c78d8f802fbd80418e6ddb333b21f060fa9.tar.xz libguestfs-93734c78d8f802fbd80418e6ddb333b21f060fa9.zip |
virt-make-fs: Use mount instead of mount_options.
-rwxr-xr-x | tools/virt-make-fs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/virt-make-fs b/tools/virt-make-fs index 9951ecd9..3938e277 100755 --- a/tools/virt-make-fs +++ b/tools/virt-make-fs @@ -449,7 +449,7 @@ eval { # Create the filesystem. $g->mkfs ($type, $dev); - $g->mount_options ("", $dev, "/"); + $g->mount ($dev, "/"); # Copy the data in. my $ifile; |