diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-08-18 22:08:29 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-08-18 22:08:29 +0100 |
commit | d67e6ea75dde6309ce4c6162a4a0429ab8d6709b (patch) | |
tree | e944fdbf86577e37759686d952bdbb337ff99e6d /perl/lib/Sys | |
parent | 781d72f55897b1ed923c795a0132241f53f6c6eb (diff) | |
download | libguestfs-d67e6ea75dde6309ce4c6162a4a0429ab8d6709b.tar.gz libguestfs-d67e6ea75dde6309ce4c6162a4a0429ab8d6709b.tar.xz libguestfs-d67e6ea75dde6309ce4c6162a4a0429ab8d6709b.zip |
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.
Diffstat (limited to 'perl/lib/Sys')
-rw-r--r-- | perl/lib/Sys/Guestfs/Lib.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/lib/Sys/Guestfs/Lib.pm b/perl/lib/Sys/Guestfs/Lib.pm index 037a0500..33e8acb8 100644 --- a/perl/lib/Sys/Guestfs/Lib.pm +++ b/perl/lib/Sys/Guestfs/Lib.pm @@ -977,7 +977,7 @@ sub mount_operating_system if($ro) { $g->mount_ro ($mounts->{$_}, $_) } else { - $g->mount_options ("", $mounts->{$_}, $_) + $g->mount ($mounts->{$_}, $_) } } } |