diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-12-04 12:40:19 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-12-04 12:40:19 +0000 |
commit | e81614106311688a1932251f23ac42ad04ada4fe (patch) | |
tree | 5644b49fb23e5ee78b6283a8b2b8c2194d1711fc /perl-install/partition_table/empty.pm | |
parent | be575c0c81a3a2dc6b62abc220bdbc3f5aec09f9 (diff) | |
download | drakx-e81614106311688a1932251f23ac42ad04ada4fe.tar drakx-e81614106311688a1932251f23ac42ad04ada4fe.tar.gz drakx-e81614106311688a1932251f23ac42ad04ada4fe.tar.bz2 drakx-e81614106311688a1932251f23ac42ad04ada4fe.tar.xz drakx-e81614106311688a1932251f23ac42ad04ada4fe.zip |
do not use "local *F"
Diffstat (limited to 'perl-install/partition_table/empty.pm')
-rw-r--r-- | perl-install/partition_table/empty.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl-install/partition_table/empty.pm b/perl-install/partition_table/empty.pm index e90991684..596088619 100644 --- a/perl-install/partition_table/empty.pm +++ b/perl-install/partition_table/empty.pm @@ -21,11 +21,11 @@ sub read($$) { my ($hd, $sector) = @_; my $tmp; - 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"; + my $F = partition_table::raw::openit($hd) 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, 512 or die "error reading magic number on disk $hd->{device}"; + 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); |