Skip to content

Commit

Permalink
Fix operator precedence issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Aug 9, 2016
1 parent 521953d commit c5cc078
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/check_locs_list.pl
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
# Load RSA key blacklists.
#
print "Loading key blacklists...\n";
open KEYS, '../build/blacklist.RSA-1024' || die "can't open RSA 1024 blacklist";
open(KEYS, '../build/blacklist.RSA-1024') || die "can't open RSA 1024 blacklist";
while (<KEYS>) {
chomp;
$rsa1024{$_} = 1;
}
close KEYS;
open KEYS, '../build/blacklist.RSA-2048' || die "can't open RSA 2048 blacklist";
open(KEYS, '../build/blacklist.RSA-2048') || die "can't open RSA 2048 blacklist";
while (<KEYS>) {
chomp;
$rsa2048{$_} = 1;
Expand Down

0 comments on commit c5cc078

Please sign in to comment.