The branch master has been updated
via fe92150d69fe475e94d0adbcbf77a07d21af3dae (commit)
from 6b4eb933623ed1d1997732b7e6e081b788cfdd22 (commit)
- Log -----------------------------------------------------------------
commit fe92150d69fe475e94d0adbcbf77a07d21af3dae
Author: Norm Green <[email protected]>
Date: Mon May 11 17:22:47 2020 -0700
Add missing pragma weak declaration to lhash.h
The missing symbol caused a linker failure on solaris x86_64.
Fixes #11796
Reviewed-by: Matthias St. Pierre <[email protected]>
Reviewed-by: Nicola Tuveri <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/11798)
-----------------------------------------------------------------------
Summary of changes:
include/openssl/lhash.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/openssl/lhash.h b/include/openssl/lhash.h
index d3f064a8d0..5ad9b16ab2 100644
--- a/include/openssl/lhash.h
+++ b/include/openssl/lhash.h
@@ -230,6 +230,7 @@ DEFINE_LHASH_OF(OPENSSL_CSTRING);
*/
# ifdef __SUNPRO_C
# pragma weak OPENSSL_LH_new
+# pragma weak OPENSSL_LH_flush
# pragma weak OPENSSL_LH_free
# pragma weak OPENSSL_LH_insert
# pragma weak OPENSSL_LH_delete