summaryrefslogtreecommitdiffstats
path: root/crypto/core_namemap.c
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/core_namemap.c
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/core_namemap.c')
-rw-r--r--crypto/core_namemap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/core_namemap.c b/crypto/core_namemap.c
index 1cc76bf030..ae9aa19c3f 100644
--- a/crypto/core_namemap.c
+++ b/crypto/core_namemap.c
@@ -10,7 +10,7 @@
#include "e_os.h" /* strcasecmp */
#include "internal/namemap.h"
#include <openssl/lhash.h>
-#include "crypto/lhash.h" /* openssl_lh_strcasehash */
+#include "crypto/lhash.h" /* ossl_lh_strcasehash */
#include "internal/tsan_assist.h"
/*-
@@ -47,7 +47,7 @@ struct ossl_namemap_st {
static unsigned long namenum_hash(const NAMENUM_ENTRY *n)
{
- return openssl_lh_strcasehash(n->name);
+ return ossl_lh_strcasehash(n->name);
}
static int namenum_cmp(const NAMENUM_ENTRY *a, const NAMENUM_ENTRY *b)