diff options
author | Hugo Landau <hlandau@openssl.org> | 2022-03-22 12:52:27 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2022-06-22 09:36:14 +0200 |
commit | 5317b6ee1fc3db20de5976fbb46cc49a45c0768a (patch) | |
tree | d74e2364f8eec5783f0f22f4b4333a8665a40948 /crypto/property/defn_cache.c | |
parent | Optimize chacha20 on aarch64 by SVE2 (diff) | |
download | openssl-5317b6ee1fc3db20de5976fbb46cc49a45c0768a.tar.xz openssl-5317b6ee1fc3db20de5976fbb46cc49a45c0768a.zip |
Add deprecation macro for 3.1 and deprecate OPENSSL_LH_stats
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/17937)
Diffstat (limited to 'crypto/property/defn_cache.c')
-rw-r--r-- | crypto/property/defn_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/property/defn_cache.c b/crypto/property/defn_cache.c index c697e6f474..bb555fccc1 100644 --- a/crypto/property/defn_cache.c +++ b/crypto/property/defn_cache.c @@ -29,7 +29,7 @@ typedef struct { char body[1]; } PROPERTY_DEFN_ELEM; -DEFINE_LHASH_OF(PROPERTY_DEFN_ELEM); +DEFINE_LHASH_OF_EX(PROPERTY_DEFN_ELEM); static unsigned long property_defn_hash(const PROPERTY_DEFN_ELEM *a) { |