aboutsummaryrefslogtreecommitdiff
path: root/openssl/crypto/ec/ecp_oct.c
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/crypto/ec/ecp_oct.c')
-rw-r--r--openssl/crypto/ec/ecp_oct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/crypto/ec/ecp_oct.c b/openssl/crypto/ec/ecp_oct.c
index e5cec8be8..1bc3f39ad 100644
--- a/openssl/crypto/ec/ecp_oct.c
+++ b/openssl/crypto/ec/ecp_oct.c
@@ -413,7 +413,7 @@ int ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point,
}
/* test required by X9.62 */
- if (!EC_POINT_is_on_curve(group, point, ctx)) {
+ if (EC_POINT_is_on_curve(group, point, ctx) <= 0) {
ECerr(EC_F_EC_GFP_SIMPLE_OCT2POINT, EC_R_POINT_IS_NOT_ON_CURVE);
goto err;
}