openssl: Fix OpenSSL version check for EC_POINT_set_affine_coordinates

Fixes: bd323ae6c832 ("openssl: Migrate from deprecated EC_POINT_[set|get]_affine_coordinates_GFp() functions")
Closes strongswan/strongswan#332
This commit is contained in:
Noel Kuntze 2021-04-15 16:23:18 +02:00 committed by Tobias Brunner
parent e9a55abce4
commit 1de13f9037

View File

@ -506,7 +506,7 @@ EC_GROUP *ec_group_new_brainpool(bp_curve *curve)
goto failed;
}
G = EC_POINT_new(group);
#ifdef OPENSSL_VERSION_NUMBER >= 0x1010100fL
#if OPENSSL_VERSION_NUMBER >= 0x1010100fL
if (!G || !EC_POINT_set_affine_coordinates(group, G, x, y, ctx))
#else
if (!G || !EC_POINT_set_affine_coordinates_GFp(group, G, x, y, ctx))