aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ec/ecp_nist.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2001-03-07 09:53:41 +0000
committerBodo Möller <bodo@openssl.org>2001-03-07 09:53:41 +0000
commitf1f25544e04ccf917a697b188a70ada5b09fc1a3 (patch)
tree86724d6fa97d45b3486fd777e5becd1b03b3c2fa /crypto/ec/ecp_nist.c
parent2e0db07627d6ec226f3bdbeb3ac211dbd619f908 (diff)
downloadopenssl-f1f25544e04ccf917a697b188a70ada5b09fc1a3.tar.gz
..._init functions are method-specific too
(they can't do much useful, but they will have to set pointers to NULL)
Diffstat (limited to 'crypto/ec/ecp_nist.c')
-rw-r--r--crypto/ec/ecp_nist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ec/ecp_nist.c b/crypto/ec/ecp_nist.c
index 94a232f747..f847234faf 100644
--- a/crypto/ec/ecp_nist.c
+++ b/crypto/ec/ecp_nist.c
@@ -60,7 +60,7 @@
const EC_METHOD *EC_GFp_nist_method(void)
{
static const EC_METHOD ret = {
- ec_GFp_simple_group_init,
+ ec_GFp_nist_group_init,
ec_GFp_nist_group_set_curve_GFp,
ec_GFp_nist_group_finish,
ec_GFp_nist_group_clear_finish,