From: Richard Levitte Date: Sun, 22 May 2016 08:57:18 +0000 (+0200) Subject: Complete the rename of LHASH functions and types X-Git-Tag: OpenSSL_1_1_0-pre6~735 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=154fe2b4be294050b9975edbbe2d83294a83d6b6;p=oweals%2Fopenssl.git 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 --- 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;