Update.
authorUlrich Drepper <drepper@redhat.com>
Sun, 5 Sep 2004 07:19:46 +0000 (07:19 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sun, 5 Sep 2004 07:19:46 +0000 (07:19 +0000)
2004-09-05  Ulrich Drepper  <drepper@redhat.com>

* nscd/cache.c (cache_add): Correctly log GETHOSTBYADDR and
GETHOSTBYADDRv6 requests.

ChangeLog
nscd/cache.c

index de225ea..084f3cd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-09-05  Ulrich Drepper  <drepper@redhat.com>
+
+       * nscd/cache.c (cache_add): Correctly log GETHOSTBYADDR and
+       GETHOSTBYADDRv6 requests.
+
 2004-09-04  Ulrich Drepper  <drepper@redhat.com>
 
        * nscd/pwdcache.c (cache_addpw): Use correct key length in
index 2d50d77..69c2efb 100644 (file)
@@ -115,9 +115,19 @@ cache_add (int type, const void *key, size_t len, struct datahead *packet,
           uid_t owner)
 {
   if (__builtin_expect (debug_level >= 2, 0))
-    dbg_log (_("add new entry \"%s\" of type %s for %s to cache%s"),
-            (const char *) key, serv2str[type], dbnames[table - dbs],
-            first ? " (first)" : "");
+    {
+      const char *str;
+      char buf[INET6_ADDRSTRLEN + 1];
+      if (type == GETHOSTBYADDR || type == GETHOSTBYADDRv6)
+       str = inet_ntop (type == GETHOSTBYADDR ? AF_INET : AF_INET6,
+                        key, buf, sizeof (buf));
+      else
+       str = key;
+
+      dbg_log (_("add new entry \"%s\" of type %s for %s to cache%s"),
+              str, serv2str[type], dbnames[table - dbs],
+              first ? " (first)" : "");
+    }
 
   unsigned long int hash = __nis_hash (key, len) % table->head->module;
   struct hashentry *newp;