Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 30 Sep 2004 05:16:40 +0000 (05:16 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 30 Sep 2004 05:16:40 +0000 (05:16 +0000)
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.

ChangeLog
nscd/nscd_gethst_r.c

index 54c4c85..eab4b37 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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.
+
 2004-09-29  Jakub Jelinek  <jakub@redhat.com>
 
        * sysdeps/i386/fpu/s_fdim.S (__fdim): Handle +inf/+inf.
index 42327dd..5bd5997 100644 (file)
@@ -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);