summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibor Krystek <krystek@ica.cz>2014-06-03 23:14:40 +0100
committerMatt Caswell <matt@openssl.org>2014-06-03 23:19:21 +0100
commit1854c480056b23c6450dc192e48ff52945a41de3 (patch)
tree2d76bc77c351ae1120f779c462e1555be1689106
parentebda73f867160adc26b16a579e7901a119b5eb82 (diff)
downloadopenssl-new-1854c480056b23c6450dc192e48ff52945a41de3.tar.gz
Corrected OPENSSL_NO_EC_NISTP_64_GCC_128 usage in ec_lcl.h. PR#3370
-rw-r--r--crypto/ec/ec_lcl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ec/ec_lcl.h b/crypto/ec/ec_lcl.h
index da7967df38..b0d48b6b5c 100644
--- a/crypto/ec/ec_lcl.h
+++ b/crypto/ec/ec_lcl.h
@@ -404,7 +404,7 @@ int ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
int ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx);
int ec_GF2m_have_precompute_mult(const EC_GROUP *group);
-#ifndef OPENSSL_EC_NISTP_64_GCC_128
+#ifndef OPENSSL_NO_EC_NISTP_64_GCC_128
/* method functions in ecp_nistp224.c */
int ec_GFp_nistp224_group_init(EC_GROUP *group);
int ec_GFp_nistp224_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *n, BN_CTX *);