Skip to content

Commit

Permalink
Correct mistake in call of error function that prevented the correct …
Browse files Browse the repository at this point in the history
…message being issued in the case of certificates with too-short public keys.
  • Loading branch information
iay committed Feb 16, 2009
1 parent 5ce9fca commit 471b939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/check_embedded.pl
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ sub comment {
$pubSize = $1;
# print " Public key size: $pubSize\n";
if ($pubSize < 1024) {
error(@olines, 'PUBLIC KEY TOO SHORT');
error('PUBLIC KEY TOO SHORT');
}
}
if (/Not After : (.*)$/) {
Expand Down

0 comments on commit 471b939

Please sign in to comment.