summaryrefslogtreecommitdiff
path: root/crypto/bn/bn_recp.c
diff options
context:
space:
mode:
authorgeoff <geoff>2008-11-12 03:57:47 +0000
committergeoff <geoff>2008-11-12 03:57:47 +0000
commitf269db49479c8d716425dabce1e6a1282b5a2048 (patch)
tree666d483b34f0bf43752636031520f2bc5ff90010 /crypto/bn/bn_recp.c
parent3cf9e7951d15e65a6c3fb905b5d7164a1fcf9be4 (diff)
downloadopenssl-f269db49479c8d716425dabce1e6a1282b5a2048.tar.gz
Revert the size_t modifications from HEAD that had led to more
knock-on work than expected - they've been extracted into a patch series that can be completed elsewhere, or in a different branch, before merging back to HEAD.
Diffstat (limited to 'crypto/bn/bn_recp.c')
-rw-r--r--crypto/bn/bn_recp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_recp.c b/crypto/bn/bn_recp.c
index 20ee319fe..2e8efb8da 100644
--- a/crypto/bn/bn_recp.c
+++ b/crypto/bn/bn_recp.c
@@ -214,7 +214,7 @@ err:
* we can do faster division if the remainder is not required.
*/
/* r := 2^len / m */
-int BN_reciprocal(BIGNUM *r, const BIGNUM *m, size_t len, BN_CTX *ctx)
+int BN_reciprocal(BIGNUM *r, const BIGNUM *m, int len, BN_CTX *ctx)
{
int ret= -1;
BIGNUM *t;