diff options
-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; |