diff options
author | Thorsten Kukuk <kukuk@suse.de> | 2011-07-01 22:53:01 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-07-01 22:53:01 -0400 |
commit | 445b4a53ea9d6c457c5f4ac1538102d8be0a5d89 (patch) | |
tree | 3058c0d00c391e0a093eca4825128db7251a8859 /nscd/hstcache.c | |
parent | 6d4d8e8eef734412bedfd3a0bcece15109155913 (diff) | |
download | glibc-445b4a53ea9d6c457c5f4ac1538102d8be0a5d89.zip glibc-445b4a53ea9d6c457c5f4ac1538102d8be0a5d89.tar.gz glibc-445b4a53ea9d6c457c5f4ac1538102d8be0a5d89.tar.bz2 |
Handle nscd negtimeout==0
Diffstat (limited to 'nscd/hstcache.c')
-rw-r--r-- | nscd/hstcache.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/nscd/hstcache.c b/nscd/hstcache.c index 1ab5860..1f09c0b 100644 --- a/nscd/hstcache.c +++ b/nscd/hstcache.c @@ -141,10 +141,14 @@ cache_addhst (struct database_dyn *db, int fd, request_header *req, MSG_NOSIGNAL)) != total) all_written = false; - dataset = mempool_alloc (db, sizeof (struct dataset) + req->key_len, - 1); /* If we cannot permanently store the result, so be it. */ - if (dataset != NULL) + if (db->negtimeout == 0) + { + /* Mark the old entry as obsolete. */ + if (dh != NULL) + dh->usable = false; + } + else if ((dataset = mempool_alloc (db, sizeof (struct dataset) + req->key_len, 1)) != NULL) { dataset->head.allocsize = sizeof (struct dataset) + req->key_len; dataset->head.recsize = total; |