mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-06 05:50:28 +01:00
fix wrong debug message
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4179 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
parent
399fe0f1a1
commit
7a4cb4254e
1 changed files with 4 additions and 4 deletions
|
|
@ -409,9 +409,9 @@ ensure_killed (gpointer data)
|
|||
kill (pid, SIGKILL);
|
||||
|
||||
/* ensure the child is reaped */
|
||||
nm_debug ("waiting for ppp pid %d to exit", pid);
|
||||
nm_debug ("waiting for dnsmasq pid %d to exit", pid);
|
||||
waitpid (pid, NULL, 0);
|
||||
nm_debug ("ppp pid %d cleaned up", pid);
|
||||
nm_debug ("dnsmasq pid %d cleaned up", pid);
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
|
@ -437,9 +437,9 @@ nm_dnsmasq_manager_stop (NMDnsMasqManager *manager)
|
|||
kill (priv->pid, SIGKILL);
|
||||
|
||||
/* ensure the child is reaped */
|
||||
nm_debug ("waiting for ppp pid %d to exit", priv->pid);
|
||||
nm_debug ("waiting for dnsmasq pid %d to exit", priv->pid);
|
||||
waitpid (priv->pid, NULL, 0);
|
||||
nm_debug ("ppp pid %d cleaned up", priv->pid);
|
||||
nm_debug ("dnsmasq pid %d cleaned up", priv->pid);
|
||||
}
|
||||
|
||||
priv->pid = 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue