aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-01-06 11:10:01 +0100
committerAndy Polyakov <appro@openssl.org>2015-01-06 11:10:01 +0100
commit4fec91506975f62a2f93be71a46acc7fae7eef45 (patch)
tree3e2f2e3dcd14762b6c611852b7919cf08da6cf6b /crypto/bn
parentfb76ad8d43e37b399f22932c8ccc85578fcdf7b5 (diff)
downloadopenssl-4fec91506975f62a2f93be71a46acc7fae7eef45.tar.gz
CHANGES: mention "universal" ARM support.
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/bn')
-rw-r--r--crypto/bn/bn_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c
index 886de0d81f..2f6ab6170f 100644
--- a/crypto/bn/bn_lib.c
+++ b/crypto/bn/bn_lib.c
@@ -265,7 +265,7 @@ void BN_free(BIGNUM *a)
OPENSSL_free(a);
else
{
-#ifndef OPENSSL_NO_DEPRECATED
+#ifdef OPENSSL_USE_DEPRECATED
a->flags|=BN_FLG_FREE;
#endif
a->d = NULL;