aboutsummaryrefslogtreecommitdiff
path: root/crypto/bn/bn_nist.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2017-06-21 15:52:52 +0100
committerMatt Caswell <matt@openssl.org>2017-08-21 08:44:44 +0100
commit437e5050d585ede90301ddeee1532e22064e63eb (patch)
treeb9c3360afcce90523c450f2cef510a8a9fd50e81 /crypto/bn/bn_nist.c
parent86f31dd9cc81d1c2429846ab663ecd8a29333e3b (diff)
downloadopenssl-437e5050d585ede90301ddeee1532e22064e63eb.zip
openssl-437e5050d585ede90301ddeee1532e22064e63eb.tar.gz
openssl-437e5050d585ede90301ddeee1532e22064e63eb.tar.bz2
Remove OPENSSL_assert() usage from crypto/bn
Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3740)
Diffstat (limited to 'crypto/bn/bn_nist.c')
-rw-r--r--crypto/bn/bn_nist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_nist.c b/crypto/bn/bn_nist.c
index 53598f9..fcc2b77 100644
--- a/crypto/bn/bn_nist.c
+++ b/crypto/bn/bn_nist.c
@@ -254,7 +254,7 @@ static void nist_cp_bn_0(BN_ULONG *dst, const BN_ULONG *src, int top, int max)
int i;
#ifdef BN_DEBUG
- OPENSSL_assert(top <= max);
+ assert(top <= max);
#endif
for (i = 0; i < top; i++)
dst[i] = src[i];