summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_div.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-02-01 08:48:30 +0000
committerBodo Möller <bodo@openssl.org>2000-02-01 08:48:30 +0000
commitfe7cd1647d48f5e96f9f02c81bcdb5cf54bd10d2 (patch)
tree8ed3b964ccfb3a4f0fcd869b0a3ea4fbc5bd0bf9 /crypto/bn/bn_div.c
parent1c8337abe3ad5fb066d50dc8933b1733a8b6fe3e (diff)
Typo in preprocessor symbol.
Diffstat (limited to 'crypto/bn/bn_div.c')
-rw-r--r--crypto/bn/bn_div.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c
index 830da87f58..928773af1c 100644
--- a/crypto/bn/bn_div.c
+++ b/crypto/bn/bn_div.c
@@ -226,7 +226,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
: "cc"); \
q; \
})
-# define REMINDER_IS_ALREADY_CALCULATED
+# define REMAINDER_IS_ALREADY_CALCULATED
# endif /* __<cpu> */
# endif /* __GNUC__ */
#endif /* NO_ASM */
@@ -246,7 +246,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
#ifdef BN_LLONG
BN_ULLONG t2;
-#ifndef REMINDER_IS_ALREADY_CALCULATED
+#ifndef REMAINDER_IS_ALREADY_CALCULATED
/*
* rem doesn't have to be BN_ULLONG. The least we
* know it's less that d0, isn't it?
@@ -267,7 +267,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
#else
BN_ULONG t2l,t2h,ql,qh;
-#ifndef REMINDER_IS_ALREADY_CALCULATED
+#ifndef REMAINDER_IS_ALREADY_CALCULATED
/*
* It's more than enough with the only multiplication.
* See the comment above in BN_LLONG section...