From: Ulf Möller Date: Tue, 1 Feb 2000 23:47:24 +0000 (+0000) Subject: match the prototype X-Git-Tag: OpenSSL_0_9_5beta1~132 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0bde1089f895718db2fe2637fda4a0c2ed6df904;p=oweals%2Fopenssl.git match the prototype --- diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c index f15eced0cf..d8c31e1db0 100644 --- a/crypto/bn/bn_div.c +++ b/crypto/bn/bn_div.c @@ -63,7 +63,8 @@ /* The old slow way */ #if 0 -int BN_div(BIGNUM *dv, BIGNUM *rem, BIGNUM *m, BIGNUM *d, BN_CTX *ctx) +int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, + BN_CTX *ctx) { int i,nm,nd; BIGNUM *D;