summaryrefslogtreecommitdiffstats
path: root/crypto/property
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-03-22 11:52:27 +0000
committerTomas Mraz <tomas@openssl.org>2022-11-21 10:49:52 +0100
commit433471084e4955bbab01d1803a3cf4320031a5c3 (patch)
tree1fee767badf428b0315c24e26d786485c7c7ec3a /crypto/property
parent2adb7908ef89a01955d9d27365aacff19edf4d57 (diff)
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) (cherry picked from commit 5317b6ee1fc3db20de5976fbb46cc49a45c0768a)
Diffstat (limited to 'crypto/property')
-rw-r--r--crypto/property/defn_cache.c2
-rw-r--r--crypto/property/property.c2
-rw-r--r--crypto/property/property_string.c2
3 files changed, 3 insertions, 3 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)
{
diff --git a/crypto/property/property.c b/crypto/property/property.c
index fe00815cbe..7b0e3c7d5c 100644
--- a/crypto/property/property.c
+++ b/crypto/property/property.c
@@ -53,7 +53,7 @@ typedef struct {
char body[1];
} QUERY;
-DEFINE_LHASH_OF(QUERY);
+DEFINE_LHASH_OF_EX(QUERY);
typedef struct {
int nid;
diff --git a/crypto/property/property_string.c b/crypto/property/property_string.c
index 3f978c06a3..e06f47a6b7 100644
--- a/crypto/property/property_string.c
+++ b/crypto/property/property_string.c
@@ -32,7 +32,7 @@ typedef struct {
char body[1];
} PROPERTY_STRING;
-DEFINE_LHASH_OF(PROPERTY_STRING);
+DEFINE_LHASH_OF_EX(PROPERTY_STRING);
typedef LHASH_OF(PROPERTY_STRING) PROP_TABLE;
typedef struct {