2007-01-27 Jürg Billeter <j@bitron.ch>

* src/backends/NetworkManagerPaldo.c
		- (nm_system_update_dns): clear nscd hosts cache


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2248 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Jürg Billeter 2007-01-26 23:05:51 +00:00 committed by Juerg Billeter
parent dbd32448b0
commit 7798f8b2e6
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2007-01-27 Jürg Billeter <j@bitron.ch>
* src/backends/NetworkManagerPaldo.c
- (nm_system_update_dns): clear nscd hosts cache
2007-01-04 Dan Williams <dcbw@redhat.com>
Threading removal related cleanups:

View file

@ -37,6 +37,7 @@
#include "nm-device.h"
#include "nm-device-802-3-ethernet.h"
#include "nm-device-802-11-wireless.h"
#include "nm-utils.h"
/*
* nm_system_init
@ -217,6 +218,8 @@ void nm_system_kill_all_dhcp_daemons (void)
*/
void nm_system_update_dns (void)
{
nm_info ("Clearing nscd hosts cache.");
nm_spawn_process ("/usr/sbin/nscd -i hosts");
}