From 4c54aeb214f29a3e2fd017a839e18440c32aa596 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Sat, 23 Feb 2002 16:58:54 +0000 Subject: handle MBR containing the same character (0 or "l") --- perl-install/partition_table_empty.pm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/perl-install/partition_table_empty.pm b/perl-install/partition_table_empty.pm index d460317f5..b2cc545de 100644 --- a/perl-install/partition_table_empty.pm +++ b/perl-install/partition_table_empty.pm @@ -21,14 +21,12 @@ sub read($$) { my ($hd, $sector) = @_; my $tmp; - my $magic = "\0" x 512; - local *F; partition_table_raw::openit($hd, *F) or die "failed to open device"; c::lseek_sector(fileno(F), $sector, 0) or die "reading of partition in sector $sector failed"; #- check magic number - sysread F, $tmp, length $magic or die "error reading magic number"; - $tmp eq $magic or die "bad 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"; partition_table_raw::zero_MBR($hd); -- cgit v1.2.1