summaryrefslogtreecommitdiffstats
path: root/crypto/lhash
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2021-03-09 13:37:22 +1000
committerShane Lontis <shane.lontis@oracle.com>2021-03-18 17:52:38 +1000
commit285aa80ef1bb3a8e136a88cf41f3b34863409cd2 (patch)
tree6353a851d91e498eb986129b71f80a22f0e280a0 /crypto/lhash
parentb54cab31d2593421198f75e715b5f851ce24fe6b (diff)
Add ossl_lhash symbols
Partial fix for #12964 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14473)
Diffstat (limited to 'crypto/lhash')
-rw-r--r--crypto/lhash/lhash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/lhash/lhash.c b/crypto/lhash/lhash.c
index 77754187a7..c8a30fd77d 100644
--- a/crypto/lhash/lhash.c
+++ b/crypto/lhash/lhash.c
@@ -360,7 +360,7 @@ unsigned long OPENSSL_LH_strhash(const char *c)
return (ret >> 16) ^ ret;
}
-unsigned long openssl_lh_strcasehash(const char *c)
+unsigned long ossl_lh_strcasehash(const char *c)
{
unsigned long ret = 0;
long n;