aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_lcl.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-02-02 22:18:01 +0000
committerBodo Möller <bodo@openssl.org>2000-02-02 22:18:01 +0000
commitaff0825c618f343dcccbeb633ba27bc947c50c77 (patch)
tree7a936d3a3038b731a5b55161eab9137f460ccdf7 /crypto/bn/bn_lcl.h
parente74231ed9e5b7a95fd7af625a09628d69eac76c3 (diff)
downloadopenssl-aff0825c618f343dcccbeb633ba27bc947c50c77.tar.gz
Tolerate negative numbers in BN_is_prime.
Diffstat (limited to 'crypto/bn/bn_lcl.h')
-rw-r--r--crypto/bn/bn_lcl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_lcl.h b/crypto/bn/bn_lcl.h
index d24cffdfae..fa347ee6f8 100644
--- a/crypto/bn/bn_lcl.h
+++ b/crypto/bn/bn_lcl.h
@@ -203,7 +203,7 @@ extern "C" {
BN_ULLONG t; \
t=(BN_ULLONG)(a)*(a); \
(r0)=Lw(t); \
- (r1)=Hw(t); ]
+ (r1)=Hw(t); \
}
#elif defined(BN_UMULT_HIGH)