summaryrefslogtreecommitdiffstats
path: root/perl-install/partition_table_empty.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-04-09 09:28:24 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-04-09 09:28:24 +0000
commitf9a642df536f4779ed37f2a090e31987f7e7d7ce (patch)
tree5a06e76f6566e6621939cd8f7f9c50368c64ff48 /perl-install/partition_table_empty.pm
parent21821ebbb28f714e4f12d71eff0357e498fdb111 (diff)
downloaddrakx-f9a642df536f4779ed37f2a090e31987f7e7d7ce.tar
drakx-f9a642df536f4779ed37f2a090e31987f7e7d7ce.tar.gz
drakx-f9a642df536f4779ed37f2a090e31987f7e7d7ce.tar.bz2
drakx-f9a642df536f4779ed37f2a090e31987f7e7d7ce.tar.xz
drakx-f9a642df536f4779ed37f2a090e31987f7e7d7ce.zip
nicer debug "bag magic" error message (thanks to Brian J. Murrell)
Diffstat (limited to 'perl-install/partition_table_empty.pm')
-rw-r--r--perl-install/partition_table_empty.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/partition_table_empty.pm b/perl-install/partition_table_empty.pm
index b2cc545de..6c922ffb7 100644
--- a/perl-install/partition_table_empty.pm
+++ b/perl-install/partition_table_empty.pm
@@ -25,8 +25,8 @@ sub read($$) {
c::lseek_sector(fileno(F), $sector, 0) or die "reading of partition in sector $sector failed";
#- check magic number
- sysread F, $tmp, 512 or die "error reading magic number";
- $tmp eq substr($tmp, 0, 1) x 512 or die "bad magic number";
+ sysread F, $tmp, 512 or die "error reading magic number on disk $hd->{device}";
+ $tmp eq substr($tmp, 0, 1) x 512 or die "bad magic number on disk $hd->{device}";
partition_table_raw::zero_MBR($hd);