From: Ulf Möller Date: Tue, 5 Dec 2000 02:00:40 +0000 (+0000) Subject: Use assert as in the rest of the BN library. X-Git-Tag: OpenSSL_0_9_6a-beta1~107^2~42 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=90e7ce363ae8278bb4ac647739c89a43ed341e34 Use assert as in the rest of the BN library. --- diff --git a/crypto/bn/bn_mul.c b/crypto/bn/bn_mul.c index b7f8a51675..eb5d525613 100644 --- a/crypto/bn/bn_mul.c +++ b/crypto/bn/bn_mul.c @@ -56,6 +56,11 @@ * [including the GNU Public Licence.] */ +#ifndef BN_DEBUG +# undef NDEBUG /* avoid conflicting definitions */ +# define NDEBUG +#endif + #include #include #include "cryptlib.h"