diff options
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/fs/mount.pm | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index accb94273..4001b59cc 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- diskdrake: + o fix garbaged error messages when + Version 10.5.3 - 9 November 2007, by Pascal "Pixel" Rigaux - bootloader-config: diff --git a/perl-install/fs/mount.pm b/perl-install/fs/mount.pm index 6b9191a73..7a1af4da5 100644 --- a/perl-install/fs/mount.pm +++ b/perl-install/fs/mount.pm @@ -116,7 +116,7 @@ sub umount { run_program::run('umount', $mntpoint) or do { kill 15, fuzzy_pidofs('^fam\b'); my $err; - run_program::run('umount', '2>', \$err, $mntpoint) or die N("error unmounting %s: %s", $mntpoint, $err); + run_program::run('umount', '2>', \$err, $mntpoint) or die N("error unmounting %s: %s", $mntpoint, common::to_utf8($err)); }; substInFile { $_ = '' if /(^|\s)$mntpoint\s/ } '/etc/mtab'; #- do not care about error, if we can not read, we will not manage to write... (and mess mtab) |