diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-01-25 04:51:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-01-25 04:51:45 +0000 |
commit | 488fb3c7368721be174d78f45bb3f5d89940446e (patch) | |
tree | 2378f1a8c8c42f7d3ebfa5ad9ddd65722000cea4 | |
parent | db76d9433c8b71eb3677ff5ca5b94e084e73e468 (diff) | |
download | glibc-488fb3c7368721be174d78f45bb3f5d89940446e.tar glibc-488fb3c7368721be174d78f45bb3f5d89940446e.tar.gz glibc-488fb3c7368721be174d78f45bb3f5d89940446e.tar.bz2 glibc-488fb3c7368721be174d78f45bb3f5d89940446e.zip |
Update.
* nscd/hstcache.c: Don't count in mapped IPv6 addresses in total
size anymore.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | nscd/hstcache.c | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -1,5 +1,8 @@ 2000-01-24 Ulrich Drepper <drepper@cygnus.com> + * nscd/hstcache.c: Don't count in mapped IPv6 addresses in total + size anymore. + * locale/programs/ld-collate.c (collate_output): Also handle IGNOREd characters in the simple way when generating the multibyte table. diff --git a/nscd/hstcache.c b/nscd/hstcache.c index a2f8115aa2..5ac0cee816 100644 --- a/nscd/hstcache.c +++ b/nscd/hstcache.c @@ -157,9 +157,7 @@ cache_addhst (struct database *db, int fd, request_header *req, void *key, total += (sizeof (struct hostdata) + h_name_len + h_aliases_cnt * sizeof (size_t) - + h_addr_list_cnt * (hst->h_length - + (hst->h_length == NS_INADDRSZ - ? NS_IN6ADDRSZ : 0))); + + h_addr_list_cnt * hst->h_length); data = (struct hostdata *) malloc (total + req->key_len); if (data == NULL) |