From cce82543244847bc44ccdd9d116e2fd04599f14c Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 9 Oct 2001 13:55:00 +0000 Subject: fix detecting read-only drives (like memory-sticks) --- perl-install/partition_table_raw.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/partition_table_raw.pm') diff --git a/perl-install/partition_table_raw.pm b/perl-install/partition_table_raw.pm index bbeaaa5ad..a56ff7648 100644 --- a/perl-install/partition_table_raw.pm +++ b/perl-install/partition_table_raw.pm @@ -141,7 +141,7 @@ sub test_for_bad_drives { my $sector = $hd->{geom}{sectors} - 1; - local *F; openit($hd, *F, 2) or return; + local *F; openit($hd, *F, 2) or die "can't open device"; my $seek = sub { c::lseek_sector(fileno(F), $sector, 0) or die "seeking to sector $sector failed"; -- cgit v1.2.1