summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2005-06-13 05:34:30 +0000
committerPascal Rigaux <pixel@mandriva.com>2005-06-13 05:34:30 +0000
commit236b47f5fcf5b70a6156b495dfc2e517d4d21abc (patch)
tree5e87a891cf5058d8c52021370c0ef79697a182fe /perl-install/fs.pm
parent0935fb7e249568209af72cce0094feee6a11036c (diff)
downloaddrakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar
drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar.gz
drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar.bz2
drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.tar.xz
drakx-236b47f5fcf5b70a6156b495dfc2e517d4d21abc.zip
fsedit::is_same_hd is now fs:get::is_same_hd
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index 766a2e702..ce037a7af 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -104,7 +104,7 @@ sub merge_fstabs {
my ($loose, $fstab, @l) = @_;
foreach my $p (@$fstab) {
- my ($l1, $l2) = partition { fsedit::is_same_hd($_, $p) } @l;
+ my ($l1, $l2) = partition { fs::get::is_same_hd($_, $p) } @l;
my ($p2) = @$l1 or next;
@l = @$l2;
@@ -274,7 +274,7 @@ sub merge_info_from_fstab {
my @l = grep {
if ($uniq) {
my $part = fs::get::mntpoint2part($_->{mntpoint}, $fstab);
- !$part || fsedit::is_same_hd($part, $_); #- keep it only if it is the mountpoint AND the same device
+ !$part || fs::get::is_same_hd($part, $_); #- keep it only if it is the mountpoint AND the same device
} else {
1;
}