diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-09-30 05:16:40 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-09-30 05:16:40 +0000 |
commit | af38d7ce63a5c0196a1b2e353f84081ed17e9ead (patch) | |
tree | 20bac992dc2027214adcf78b78d73314ca52b098 /nscd/nscd_gethst_r.c | |
parent | 7ff2ba908a0341bf3e6f1f7f6db2cac7f89935b5 (diff) | |
download | glibc-af38d7ce63a5c0196a1b2e353f84081ed17e9ead.tar.gz |
Update.
2004-09-29 Ulrich Drepper <drepper@redhat.com>
* nscd/nscd_gethst_r.c (nscd_gethst_r): Use correct constant for
testing result of __nscd_get_map_ref.
Diffstat (limited to 'nscd/nscd_gethst_r.c')
-rw-r--r-- | nscd/nscd_gethst_r.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nscd/nscd_gethst_r.c b/nscd/nscd_gethst_r.c index 42327dd317..5bd5997de0 100644 --- a/nscd/nscd_gethst_r.c +++ b/nscd/nscd_gethst_r.c @@ -27,7 +27,6 @@ #include <string.h> #include <unistd.h> #include <arpa/nameser.h> -#include <sys/mman.h> #include <not-cancel.h> #include "nscd-client.h" @@ -121,7 +120,7 @@ nscd_gethst_r (const char *key, size_t keylen, request_type type, struct mapped_database *mapped = __nscd_get_map_ref (GETFDHST, "hosts", &map_handle, &gc_cycle); retry: - if (mapped != MAP_FAILED) + if (mapped != NO_MAPPING) { const struct datahead *found = __nscd_cache_search (type, key, keylen, mapped); |