diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-09-05 07:19:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-09-05 07:19:46 +0000 |
commit | 418dfb124c2091489f8951bf2c6884a855df7198 (patch) | |
tree | b2d116e2b6e1b534e1e08d5ab4271e45b75d461c /nscd/cache.c | |
parent | 03e157d8498ec5bc064de89fad3d98c4c25157a7 (diff) | |
download | glibc-418dfb124c2091489f8951bf2c6884a855df7198.tar.gz glibc-418dfb124c2091489f8951bf2c6884a855df7198.tar.xz glibc-418dfb124c2091489f8951bf2c6884a855df7198.zip |
Update.
2004-09-05 Ulrich Drepper <drepper@redhat.com> * nscd/cache.c (cache_add): Correctly log GETHOSTBYADDR and GETHOSTBYADDRv6 requests.
Diffstat (limited to 'nscd/cache.c')
-rw-r--r-- | nscd/cache.c | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/nscd/cache.c b/nscd/cache.c index 2d50d7794c..69c2efb4de 100644 --- a/nscd/cache.c +++ b/nscd/cache.c @@ -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; |