From: Dr. Stephen Henson Date: Fri, 13 May 2011 12:43:41 +0000 (+0000) Subject: Typo. X-Git-Tag: OpenSSL-fips-2_0-rc1~430 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=ff636340f5298d751c1a4e01f81fbe38d1353400;hp=3ece59288699772315e460b15865d7980b6bb027 Typo. --- diff --git a/util/mkdef.pl b/util/mkdef.pl index 3f0eda1529..b87b1106e3 100755 --- a/util/mkdef.pl +++ b/util/mkdef.pl @@ -226,7 +226,7 @@ foreach (@ARGV, split(/ /, $options)) elsif (/^no-tlsext$/) { $no_tlsext=1; } elsif (/^no-cms$/) { $no_cms=1; } elsif (/^no-ec2m$/) { $no_ec2m=1; } - elsif (/^no-nistp224-64-gcc-128$/) { $no_nistp_gcc=1; } + elsif (/^no-ec-nistp224-64-gcc-128$/) { $no_nistp_gcc=1; } elsif (/^no-nextprotoneg$/) { $no_nextprotoneg=1; } elsif (/^no-ssl2$/) { $no_ssl2=1; } elsif (/^no-capieng$/) { $no_capieng=1; } @@ -1185,7 +1185,7 @@ sub is_valid if ($keyword eq "TLSEXT" && $no_tlsext) { return 0; } if ($keyword eq "PSK" && $no_psk) { return 0; } if ($keyword eq "CMS" && $no_cms) { return 0; } - if ($keyword eq "NISTP224-64-GCC-128" && $no_nistp_gcc) + if ($keyword eq "EC_NISTP224_64_GCC_128" && $no_nistp_gcc) { return 0; } if ($keyword eq "EC2M" && $no_ec2m) { return 0; } if ($keyword eq "NEXTPROTONEG" && $no_nextprotoneg) { return 0; }