From 7a4cb4254e947efdbb7753327194b2393683e416 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Mon, 13 Oct 2008 16:25:58 +0000 Subject: [PATCH] fix wrong debug message git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4179 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- src/dnsmasq-manager/nm-dnsmasq-manager.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dnsmasq-manager/nm-dnsmasq-manager.c b/src/dnsmasq-manager/nm-dnsmasq-manager.c index b46f83ab00..e9351eee46 100644 --- a/src/dnsmasq-manager/nm-dnsmasq-manager.c +++ b/src/dnsmasq-manager/nm-dnsmasq-manager.c @@ -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;