Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Fix up a Perl unused assignment warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Jan 17, 2014
1 parent 019db23 commit eef92df
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions mdx/uk/check_authorities.pl
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,9 @@ sub comment {
}

#
# Extract the public key modulus and exponent.
# Extract the public key exponent.
#
if (/^Modulus=(.*)$/) {
$modulus = $_;
# print " modulus: $modulus\n";
next;
} elsif (/Exponent: (\d+)/) {
if (/Exponent: (\d+)/) {
$exponent = $1;
# print " exponent: $exponent\n";
next;
Expand Down

0 comments on commit eef92df

Please sign in to comment.