diff options
author | Pascal Rigaux <pixel@mandriva.com> | 1999-09-19 14:55:21 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 1999-09-19 14:55:21 +0000 |
commit | f437e5f69a3fc892a6db36e0b9e9d876b1897a45 (patch) | |
tree | 64825e838242e850c7e85b99f17fa234816e738b | |
parent | 4710960f1314ec790ea876f0e50250cac59e089c (diff) | |
download | drakx-f437e5f69a3fc892a6db36e0b9e9d876b1897a45.tar drakx-f437e5f69a3fc892a6db36e0b9e9d876b1897a45.tar.gz drakx-f437e5f69a3fc892a6db36e0b9e9d876b1897a45.tar.bz2 drakx-f437e5f69a3fc892a6db36e0b9e9d876b1897a45.tar.xz drakx-f437e5f69a3fc892a6db36e0b9e9d876b1897a45.zip |
no_comment
-rw-r--r-- | perl-install/install_any.pm | 1 | ||||
-rw-r--r-- | perl-install/partition_table_raw.pm | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 86da03058..db06b9d89 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -14,6 +14,7 @@ use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK); #- misc imports #-###################################################################################### use common qw(:common :system); +use commands; use run_program; use detect_devices; use pkgs; diff --git a/perl-install/partition_table_raw.pm b/perl-install/partition_table_raw.pm index bcb7ca588..8ccba3557 100644 --- a/perl-install/partition_table_raw.pm +++ b/perl-install/partition_table_raw.pm @@ -115,10 +115,10 @@ sub typeOfMBR($) { my $dev = devices::make($_[0]); local *F; sysopen F, $dev, 0 or return; - my $tmp + my $tmp; foreach (@MBR_signatures) { my ($name, $offset, $signature) = @$_; - sysseek F, $offset, 0 or next; + sysseek(F, $offset, 0) or next; sysread(F, $tmp, length $signature) && $tmp eq $signature and return $name; } undef; |