aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2001-09-03 17:24:27 +0000
committerGeoff Thorpe <geoff@openssl.org>2001-09-03 17:24:27 +0000
commit91b3f0e691aa68daaaf137de2913b21260f94a05 (patch)
treefeb37c3ce6852f7eedc48daaf4f5cb7d11a50c45 /crypto
parent6ac4e8bd6ecff6d11ff3cd08e88356e7a2239329 (diff)
downloadopenssl-91b3f0e691aa68daaaf137de2913b21260f94a05.tar.gz
Correct a typo.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/bn_prime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_prime.c b/crypto/bn/bn_prime.c
index 5bfc0b682b..2d40fe7c9d 100644
--- a/crypto/bn/bn_prime.c
+++ b/crypto/bn/bn_prime.c
@@ -226,7 +226,7 @@ int BN_is_prime_fasttest(const BIGNUM *a, int checks,
BN_MONT_CTX *mont = NULL;
const BIGNUM *A = NULL;
- if (BN_cmp(a, BN_value_one) <= 0)
+ if (BN_cmp(a, BN_value_one()) <= 0)
return 0;
if (checks == BN_prime_checks)