diff options
author | Andy Polyakov <appro@openssl.org> | 2015-01-06 11:10:01 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2015-01-06 11:10:01 +0100 |
commit | 4fec91506975f62a2f93be71a46acc7fae7eef45 (patch) | |
tree | 3e2f2e3dcd14762b6c611852b7919cf08da6cf6b /crypto | |
parent | fix compilation error (diff) | |
download | openssl-4fec91506975f62a2f93be71a46acc7fae7eef45.tar.xz openssl-4fec91506975f62a2f93be71a46acc7fae7eef45.zip |
CHANGES: mention "universal" ARM support.
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/bn/bn_lib.c | 2 |
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; |