summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_div.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-08-04 00:01:39 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-08-04 00:01:39 +0000
commit2d978cbd30f60f9e9ddaf743d818ef66ec217f47 (patch)
tree297e11d286b60b7118bc349e89f1c2b4354618ef /crypto/bn/bn_div.c
parent0a3f67e3b0d558d30ebf57ba4fafb299eef49398 (diff)
Changes needed for Tandem NSK, supplied by Scott Uroff (scott@xypro.com).
Fix warnings with BIO_dump_indent().
Diffstat (limited to 'crypto/bn/bn_div.c')
-rw-r--r--crypto/bn/bn_div.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c
index 07af1d3b44..c3772c243b 100644
--- a/crypto/bn/bn_div.c
+++ b/crypto/bn/bn_div.c
@@ -205,7 +205,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
BN_init(&wnum);
wnum.d= &(snum->d[loop]);
wnum.top= div_n;
- wnum.max= snum->max+1; /* a bit of a lie */
+ wnum.dmax= snum->dmax+1; /* a bit of a lie */
/* Get the top 2 words of sdiv */
/* i=sdiv->top; */