[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Sun May 22 22:47:21 UTC 2016


The branch master has been updated
       via  154fe2b4be294050b9975edbbe2d83294a83d6b6 (commit)
      from  398c1b773a551183ed701b99fde901e5f4fc9426 (commit)


- Log -----------------------------------------------------------------
commit 154fe2b4be294050b9975edbbe2d83294a83d6b6
Author: Richard Levitte <levitte at openssl.org>
Date:   Sun May 22 10:57:18 2016 +0200

    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 at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 crypto/lhash/lhash_lcl.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/lhash/lhash_lcl.h b/crypto/lhash/lhash_lcl.h
index cfb0e1a..eb4a1a3 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;


More information about the openssl-commits mailing list