diff options
author | Andy Polyakov <appro@openssl.org> | 2014-10-29 10:57:46 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2014-10-29 10:57:46 +0100 |
commit | c381b63764dfb4d5a812cc51abaef423e73c49e5 (patch) | |
tree | d5b738493b9579ea9f4ce8293e320877bcf32da0 /crypto/ec | |
parent | md32_common.h: address compiler warning in HOST_c2l. (diff) | |
download | openssl-c381b63764dfb4d5a812cc51abaef423e73c49e5.tar.xz openssl-c381b63764dfb4d5a812cc51abaef423e73c49e5.zip |
ec/asm/ecp_nistz256-x86_64.pl: fix inconsistency in path handling.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/ec')
-rwxr-xr-x | crypto/ec/asm/ecp_nistz256-x86_64.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/ec/asm/ecp_nistz256-x86_64.pl b/crypto/ec/asm/ecp_nistz256-x86_64.pl index 946b734922..4486a5e07d 100755 --- a/crypto/ec/asm/ecp_nistz256-x86_64.pl +++ b/crypto/ec/asm/ecp_nistz256-x86_64.pl @@ -42,7 +42,8 @@ # VIA Nano +37-130% # # Ranges denote minimum and maximum improvement coefficients depending -# on benchmark. +# on benchmark. Lower coefficients are for ECDSA sign, relatively +# fastest server-side operation. $flavour = shift; $output = shift; @@ -3134,7 +3135,7 @@ ___ # Convert ecp_nistz256_table.c to layout expected by ecp_nistz_gather_w7 # open TABLE,"<ecp_nistz256_table.c" or -open TABLE,"<${dir}/../ecp_nistz256_table.c" or +open TABLE,"<${dir}../ecp_nistz256_table.c" or die "failed to open ecp_nistz256_table.c:",$!; use integer; |