diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-11-23 14:08:11 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-11-23 14:08:11 +0100 |
commit | 67f36c7922fe5053549ec9aa7f60ed2c5c2d65b4 (patch) | |
tree | c078a7a50a890570e7c8eb24bf9f81fa45409bcc /nscd/nscd_helper.c | |
parent | cccb6d4e87053ed63c74aee063fa84eb63ebf7b8 (diff) | |
download | glibc-67f36c7922fe5053549ec9aa7f60ed2c5c2d65b4.tar.gz glibc-67f36c7922fe5053549ec9aa7f60ed2c5c2d65b4.tar.xz glibc-67f36c7922fe5053549ec9aa7f60ed2c5c2d65b4.zip |
nss: Export nscd hash function as __nss_hash [BZ #22459]
Diffstat (limited to 'nscd/nscd_helper.c')
-rw-r--r-- | nscd/nscd_helper.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nscd/nscd_helper.c b/nscd/nscd_helper.c index a42a4a7da5..ac04a2f572 100644 --- a/nscd/nscd_helper.c +++ b/nscd/nscd_helper.c @@ -36,10 +36,9 @@ #include <sys/un.h> #include <not-cancel.h> #include <kernel-features.h> +#include <nss.h> #include "nscd-client.h" -#include "nscd_hash.h" - /* Extra time we wait if the socket is still receiving data. This value is in milliseconds. Note that the other side is nscd on the @@ -451,7 +450,7 @@ struct datahead * __nscd_cache_search (request_type type, const char *key, size_t keylen, const struct mapped_database *mapped, size_t datalen) { - unsigned long int hash = __nscd_hash (key, keylen) % mapped->head->module; + unsigned long int hash = __nss_hash (key, keylen) % mapped->head->module; size_t datasize = mapped->datasize; ref_t trail = mapped->head->array[hash]; |