2005-10-19 Christopher Aillon <caillon@redhat.com>

* src/backends/NetworkManagerGentoo.c:
	Fix path to killall.  Patch from Dave Shanker <dshanker@gmail.com>


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1064 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Christopher Aillon
2005-10-21 21:50:49 +00:00
committed by Chris Aillon
parent 2930c9c4c1
commit 7cd89af612
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2005-10-19 Christopher Aillon <caillon@redhat.com>
* src/backends/NetworkManagerGentoo.c:
Fix path to killall. Patch from Dave Shanker <dshanker@gmail.com>
2005-10-20 Robert Love <rml@novell.com> 2005-10-20 Robert Love <rml@novell.com>
* src/NetworkManagerDevice.c: Use fabs() and DBL_EPSILON to avoid a * src/NetworkManagerDevice.c: Use fabs() and DBL_EPSILON to avoid a

View File

@@ -232,7 +232,7 @@ void nm_system_update_dns (void)
if (nm_spawn_process ("/etc/init.d/nscd status") == 0) if (nm_spawn_process ("/etc/init.d/nscd status") == 0)
nm_spawn_process ("/etc/init.d/nscd restart"); nm_spawn_process ("/etc/init.d/nscd restart");
#else #else
nm_spawn_process("/usr/sbin/killall -q nscd"); nm_spawn_process("/usr/bin/killall -q nscd");
#endif #endif
} }