From 2b945c8178c4ae57d592c199a24f09ff7e0812ec Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 9 Aug 1999 08:23:57 +0000 Subject: *** empty log message *** --- perl-install/fs.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/fs.pm') diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 0b08c0775..8d3995aa4 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -79,7 +79,7 @@ sub format_part($;$) { $part->{isFormatted} and return; - log::l("formatting device $part->{device} (type ", type2name($_->{type}), ")"); + log::l("formatting device $part->{device} (type ", type2name($part->{type}), ")"); if (isExt2($part)) { format_ext2($part->{device}, $bad_blocks); @@ -151,7 +151,7 @@ sub umount_part($;$) { isSwap($part) ? swap::swapoff($part->{device}) : - umount(($prefix || '') . ($part->{mntpoint} || "/dev/$part->{device}")); + umount(($prefix || '') . ($part->{mntpoint} || devices::make($part->{device}))); $part->{isMounted} = 0; } -- cgit v1.2.1