Update.
2004-10-02 Ulrich Drepper <drepper@redhat.com> * nscd/nscd_helper.c (get_mapping): No need to check timestamp if nscd_certainly_running is nonzero.
This commit is contained in:
parent
29bdc37a64
commit
1507c81f2a
@ -1,3 +1,8 @@
|
||||
2004-10-02 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* nscd/nscd_helper.c (get_mapping): No need to check timestamp if
|
||||
nscd_certainly_running is nonzero.
|
||||
|
||||
2004-10-02 Simon Josefsson <jas@extundo.com>
|
||||
|
||||
[BZ #420]
|
||||
|
@ -160,7 +160,8 @@ get_mapping (request_type type, const char *key,
|
||||
if (head.version != DB_VERSION || head.header_size != sizeof (head)
|
||||
/* This really should not happen but who knows, maybe the update
|
||||
thread got stuck. */
|
||||
|| head.timestamp + MAPPING_TIMEOUT < time (NULL))
|
||||
|| (! head.nscd_certainly_running
|
||||
&& head.timestamp + MAPPING_TIMEOUT < time (NULL)))
|
||||
goto out_close;
|
||||
|
||||
size_t size = (sizeof (head) + roundup (head.module * sizeof (ref_t), ALIGN)
|
||||
|
Loading…
Reference in New Issue
Block a user