summaryrefslogtreecommitdiffstats
path: root/crypto/lhash
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-05-22 10:57:18 +0200
committerRichard Levitte <levitte@openssl.org>2016-05-23 00:46:53 +0200
commit154fe2b4be294050b9975edbbe2d83294a83d6b6 (patch)
tree8561432e1803baa3bec069e45f361ccda05b88e2 /crypto/lhash
parent398c1b773a551183ed701b99fde901e5f4fc9426 (diff)
Complete the rename of LHASH functions and types
LHASH_NODE was used internally, which doesn't work when configured 'no-deprecated' Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/lhash')
-rw-r--r--crypto/lhash/lhash_lcl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/lhash/lhash_lcl.h b/crypto/lhash/lhash_lcl.h
index cfb0e1ab7b..eb4a1a3f65 100644
--- a/crypto/lhash/lhash_lcl.h
+++ b/crypto/lhash/lhash_lcl.h
@@ -15,7 +15,7 @@ struct lhash_node_st {
};
struct lhash_st {
- LHASH_NODE **b;
+ OPENSSL_LH_NODE **b;
OPENSSL_LH_COMPFUNC comp;
OPENSSL_LH_HASHFUNC hash;
unsigned int num_nodes;