Ignore:
Timestamp:
Apr 18, 2015, 7:15:25 PM (9 years ago)
Author:
Bruno Cornec
Message:
  • Fix syntax errors in module Disk.pm
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/MondoRescue/lib/MondoRescue/Disk.pm

    r3365 r3369  
    5555open(FDISK, "$fdisk -l $device 2>/dev/null |") || die "Unable to read from $fdisk";
    5656while (<FDISK>) {
    57     if (($_ =~ /EFI GPT/) || ($_ =~ / GPT /){
     57    if (($_ =~ /EFI GPT/) || ($_ =~ / GPT /)) {
    5858        $type= "gpt";
    5959        last;
     
    6161}
    6262close(FDISK);
    63 pb_log(2,"Found a $type partition format\n)";
     63pb_log(2,"Found a $type partition format\n");
    6464return ($type);
    6565}
Note: See TracChangeset for help on using the changeset viewer.