File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ sub oldhash {
268268 return $hash ;
269269}
270270
271- if ( $opt_p !~ m / :/ ) {
271+ if ($opt_p !~ m / :/ ) {
272272 print " Error: Mozilla trust identifier list must include both purposes and levels\n " ;
273273 HELP_MESSAGE();
274274}
285285 foreach my $level (@included_mozilla_trust_levels ) {
286286 # for each level we want to output, see if any of our desired purposes are
287287 # included
288- return 1 if ( defined ( List::Util::first { is_in_list( $_ , @included_mozilla_trust_purposes ) } @{$trust_purposes_by_level {$level }} ) );
288+ return 1 if (defined ( List::Util::first { is_in_list( $_ , @included_mozilla_trust_purposes ) } @{$trust_purposes_by_level {$level }} ));
289289 }
290290
291291 return 0;
656656 $bk ++;
657657 }
658658 rename $crt , " $crt .~${bk} ~" or die " Failed to create backup $crt .~$bk }~: $! \n " ;
659- } elsif ( -e $crt ) {
660- unlink ( $crt ) or die " Failed to remove $crt : $! \n " ;
659+ } elsif (-e $crt ) {
660+ unlink ($crt ) or die " Failed to remove $crt : $! \n " ;
661661 }
662662 rename " $crt .~" , $crt or die " Failed to rename $crt .~ to $crt : $! \n " ;
663663}
You can’t perform that action at this time.
0 commit comments