From 1e9c50f1966ebf14b81c80d4f44e8f658758d123 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 7 Sep 2007 00:38:53 +0000 Subject: [PATCH] Fix wrong debug comment git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2768 4912f4e0-d625-0410-9fb7-b9a5a253dbdc --- libnm-glib/nm-device.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libnm-glib/nm-device.c b/libnm-glib/nm-device.c index 2e04c95bc..43009e7d0 100644 --- a/libnm-glib/nm-device.c +++ b/libnm-glib/nm-device.c @@ -139,9 +139,9 @@ nm_device_activate (NMDevice *device, NMConnection *connection) g_return_if_fail (connection != NULL); if (!org_freedesktop_NetworkManager_Device_activate (NM_DEVICE_GET_PRIVATE (device)->device_proxy, - nm_connection_to_hash (connection), - &err)) { - g_warning ("Cannot deactivate device: %s", err->message); + nm_connection_to_hash (connection), + &err)) { + g_warning ("Cannot activate device: %s", err->message); g_error_free (err); } }