From 482bbeb905781e7b17e8d79b40d2a18c317ec4f1 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 28 Jun 2004 04:42:05 +0000 Subject: Update. * nscd/connections.c (invalidate_cache): If the host cache has to be invalidated, re-read resolv.conf. --- nscd/connections.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'nscd') diff --git a/nscd/connections.c b/nscd/connections.c index 5cb73eb252..82f89c85e7 100644 --- a/nscd/connections.c +++ b/nscd/connections.c @@ -1,5 +1,5 @@ /* Inner loops of cache daemon. - Copyright (C) 1998,1999,2000,2001,2002,2003 Free Software Foundation, Inc. + Copyright (C) 1998-2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1998. @@ -25,6 +25,7 @@ #include #include #include +#include #include #include #include @@ -241,7 +242,12 @@ invalidate_cache (char *key) else if (strcmp (key, "group") == 0) number = grpdb; else if (__builtin_expect (strcmp (key, "hosts"), 0) == 0) - number = hstdb; + { + number = hstdb; + + /* Re-initialize the resolver. resolv.conf might have changed. */ + res_init (); + } else return; -- cgit v1.2.3