diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2021-03-09 04:37:22 +0100 |
---|---|---|
committer | Shane Lontis <shane.lontis@oracle.com> | 2021-03-18 08:52:38 +0100 |
commit | 285aa80ef1bb3a8e136a88cf41f3b34863409cd2 (patch) | |
tree | 6353a851d91e498eb986129b71f80a22f0e280a0 /crypto/core_namemap.c | |
parent | Add ossl_ symbol to x509 policy (diff) | |
download | openssl-285aa80ef1bb3a8e136a88cf41f3b34863409cd2.tar.xz openssl-285aa80ef1bb3a8e136a88cf41f3b34863409cd2.zip |
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.c | 4 |
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) |