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:
Dan Williams 2008-10-13 16:25:58 +00:00
parent 399fe0f1a1
commit 7a4cb4254e

View file

@ -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;