Update the check surround the BN_zero() implementation
authorRichard Levitte <levitte@openssl.org>
Tue, 5 Nov 2019 16:37:17 +0000 (17:37 +0100)
committerRichard Levitte <levitte@openssl.org>
Thu, 7 Nov 2019 10:37:25 +0000 (11:37 +0100)
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10364)

include/openssl/bn.h

index 7cfc791eabfe7999ff75eecfe483b82927962d0c..8512ddf284037f35a2db70a731e76453ac8e6731 100644 (file)
@@ -198,7 +198,7 @@ int BN_is_odd(const BIGNUM *a);
 
 void BN_zero_ex(BIGNUM *a);
 
-# if OPENSSL_API_0_9_8
+# if OPENSSL_API_LEVEL > 908
 #  define BN_zero(a)      BN_zero_ex(a)
 # else
 #  define BN_zero(a)      (BN_set_word((a),0))