summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_recp.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-11-21 08:27:46 -0500
committerRich Salz <rsalz@openssl.org>2015-11-30 16:10:12 -0500
commitd59c7c81e3850dc667d61047850c3b6936eb5fca (patch)
treec658a298cab7e2dce4d6c8d24c38fabc60ad8010 /crypto/bn/bn_recp.c
parent30c7fea496083d41b809db0041e6dfd3ea9cb858 (diff)
Remove BN_init
Rename it to be an internal function bn_init. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/bn/bn_recp.c')
-rw-r--r--crypto/bn/bn_recp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/bn_recp.c b/crypto/bn/bn_recp.c
index 39eed8b297..ef23a8c751 100644
--- a/crypto/bn/bn_recp.c
+++ b/crypto/bn/bn_recp.c
@@ -61,8 +61,8 @@
void BN_RECP_CTX_init(BN_RECP_CTX *recp)
{
- BN_init(&(recp->N));
- BN_init(&(recp->Nr));
+ bn_init(&(recp->N));
+ bn_init(&(recp->Nr));
recp->num_bits = 0;
recp->flags = 0;
}