From 75596b98a188edf513cd0ab306449198ea69f7bc Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 28 Apr 2005 06:27:13 +0000 Subject: * nscd/connections.c (nscd_run): Use time() value in prune_cache call, not timeout value, since the latter might be from another clock. --- nscd/connections.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'nscd') diff --git a/nscd/connections.c b/nscd/connections.c index 86069b2..706d657 100644 --- a/nscd/connections.c +++ b/nscd/connections.c @@ -1174,8 +1174,7 @@ handle_request: request received (Version = %d)"), req.version); /* The pthread_cond_timedwait() call timed out. It is time to clean up the cache. */ assert (my_number < lastdb); - prune_cache (&dbs[my_number], - prune_ts.tv_sec + (prune_ts.tv_nsec >= 500000000)); + prune_cache (&dbs[my_number], time (NULL)); if (clock_gettime (timeout_clock, &prune_ts) == -1) /* Should never happen. */ -- cgit v1.1