summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_mul.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-11-30 22:34:57 +0000
committerBodo Möller <bodo@openssl.org>2000-11-30 22:34:57 +0000
commitfc2e05c2d5c078d1fdf0ee56fc118ea471000a3a (patch)
treeb9edb41a68498466f28371edfae995b493f4defd /crypto/bn/bn_mul.c
parentb2993bdea10ed0c1344ce8b9fa9ddacfe681e822 (diff)
Fix BN_rshift, which caused lots of trouble.
Diffstat (limited to 'crypto/bn/bn_mul.c')
-rw-r--r--crypto/bn/bn_mul.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_mul.c b/crypto/bn/bn_mul.c
index b6608c47de..ff351af10f 100644
--- a/crypto/bn/bn_mul.c
+++ b/crypto/bn/bn_mul.c
@@ -928,7 +928,7 @@ void bn_mul_high(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, BN_ULONG *l, int n2,
}
#endif /* BN_RECURSION */
-int BN_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx)
+int BN_mul(BIGNUM *r, /* almost const */ const BIGNUM *a, /* almost const */ const BIGNUM *b, BN_CTX *ctx)
{
int top,al,bl;
BIGNUM *rr;