mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 23:00:07 +00:00
[BZ #5112]
* nscd/connections.c (restart): Fix condition. 2008-01-05 Jakub Jelinek <jakub@redhat.com> [BZ #5112] * nscd/connections.c (restart): Fix condition.
This commit is contained in:
parent
8726a12e05
commit
0fbfe2f7d8
@ -1,3 +1,8 @@
|
||||
2008-01-05 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
[BZ #5112]
|
||||
* nscd/connections.c (restart): Fix condition.
|
||||
|
||||
2008-01-03 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* ctype/ctype.h (__ctype_b_loc, __ctype_tolower_loc,
|
||||
|
@ -1,5 +1,6 @@
|
||||
/* Inner loops of cache daemon.
|
||||
Copyright (C) 1998-2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
|
||||
Copyright (C) 1998-2003, 2004, 2005, 2006, 2007, 2008
|
||||
Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
|
||||
|
||||
@ -1297,7 +1298,7 @@ cannot change to old working directory: %s; disabling paranoia mode"),
|
||||
|
||||
/* Synchronize memory. */
|
||||
for (int cnt = 0; cnt < lastdb; ++cnt)
|
||||
if (!dbs[cnt].enabled)
|
||||
if (dbs[cnt].enabled)
|
||||
{
|
||||
/* Make sure nobody keeps using the database. */
|
||||
dbs[cnt].head->timestamp = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user