From: Dr. Stephen Henson Date: Sat, 10 Mar 2001 12:37:01 +0000 (+0000) Subject: In crypto/ec #if 0 out structures which reference (currently) X-Git-Tag: OpenSSL_0_9_6a-beta2~17^2~28 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=24a93e6cddacac3b84ffcf59f944819a293aaa84 In crypto/ec #if 0 out structures which reference (currently) non existent functions because this breaks shared libraries. --- diff --git a/crypto/ec/ecp_nist.c b/crypto/ec/ecp_nist.c index 1e3a7dd033..354130bed2 100644 --- a/crypto/ec/ecp_nist.c +++ b/crypto/ec/ecp_nist.c @@ -55,7 +55,7 @@ #include "ec_lcl.h" - +#if 0 const EC_METHOD *EC_GFp_nist_method(void) { static const EC_METHOD ret = { @@ -95,6 +95,7 @@ const EC_METHOD *EC_GFp_nist_method(void) return &ret; } +#endif int ec_GFp_nist_group_init(EC_GROUP *group) diff --git a/crypto/ec/ecp_recp.c b/crypto/ec/ecp_recp.c index c8832de86d..e8d8382964 100644 --- a/crypto/ec/ecp_recp.c +++ b/crypto/ec/ecp_recp.c @@ -55,7 +55,7 @@ #include "ec_lcl.h" - +#if 0 const EC_METHOD *EC_GFp_recp_method(void) { static const EC_METHOD ret = { @@ -95,7 +95,7 @@ const EC_METHOD *EC_GFp_recp_method(void) return &ret; } - +#endif int ec_GFp_recp_group_init(EC_GROUP *group) {