summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2012-05-03 14:30:49 +0100
committerRichard W.M. Jones <rjones@redhat.com>2012-05-03 14:32:24 +0100
commit93734c78d8f802fbd80418e6ddb333b21f060fa9 (patch)
treef6dd38bb95e8440435c8d6e44d6e6b8cae33b4d0
parente60556d92725289a26ccb406c9c94be32b3251c8 (diff)
downloadlibguestfs-93734c78d8f802fbd80418e6ddb333b21f060fa9.tar.gz
libguestfs-93734c78d8f802fbd80418e6ddb333b21f060fa9.tar.xz
libguestfs-93734c78d8f802fbd80418e6ddb333b21f060fa9.zip
virt-make-fs: Use mount instead of mount_options.
-rwxr-xr-xtools/virt-make-fs2
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;